From 3db8c98e064ec7580a1655bbf155ecd0c5515c23 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 18 Sep 2008 07:23:28 +0000 Subject: [PATCH] fix :set list output - broken in recent refactoring --- content/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/options.js b/content/options.js index df67ea49..a4ff2455 100644 --- a/content/options.js +++ b/content/options.js @@ -863,7 +863,7 @@ liberator.Options = function () //{{{ { name = value ? " " + name : "no" + name; if (value != def) - name = "" + name + " (default: " + (def ? "" : "no") + options[i].name + ")"; + name = "" + name + " (default: " + (def ? "" : "no") + opt.name + ")"; list += "" + name + ""; } else