diff --git a/content/bookmarks.js b/content/bookmarks.js
index 96a3bb9f..5afd94fd 100644
--- a/content/bookmarks.js
+++ b/content/bookmarks.js
@@ -773,7 +773,7 @@ vimperator.Marks = function () //{{{
"
" + marks[i][0] + " | " +
"" + Math.round(marks[i][1].position.y * 100) + "% | " +
"" + Math.round(marks[i][1].position.x * 100) + "% | " +
- "" + vimperator.util.escapeHTML(marks[i][1].location) + " | " +
+ "" + vimperator.util.escapeHTML(marks[i][1].location) + " | " +
"";
}
list += "";
@@ -890,6 +890,7 @@ vimperator.QuickMarks = function () //{{{
vimperator.options.setPref("quickmarks", savedQuickMarks);
}
+
};
//}}}
}; //}}}
diff --git a/content/commands.js b/content/commands.js
index 52f47beb..a6690b3d 100644
--- a/content/commands.js
+++ b/content/commands.js
@@ -82,9 +82,9 @@ vimperator.Command = function (specs, action, extraInfo) //{{{
if (extraInfo.usage)
this.usage = extraInfo.usage;
- this.help = extraInfo.help || null;
+ this.help = extraInfo.help || null;
this.shortHelp = extraInfo.shortHelp || null;
- this.completer = extraInfo.completer || null;
+ this.completer = extraInfo.completer || null;
this.args = extraInfo.args || [];
}
diff --git a/content/events.js b/content/events.js
index 8eb9130b..276ae3c1 100644
--- a/content/events.js
+++ b/content/events.js
@@ -335,7 +335,7 @@ vimperator.Events = function () //{{{
// a keycode which can be used in mappings
// e.g. pressing ctrl+n would result in the string ""
// null if unknown key
- toString: function (event) //{{{
+ toString: function (event)
{
if (!event)
return;
@@ -409,7 +409,7 @@ vimperator.Events = function () //{{{
// a key like F1 is always enclosed in < and >
return "<" + modifier + key + ">";
- }, //}}}
+ },
isAcceptKey: function (key)
{
diff --git a/content/io.js b/content/io.js
index 2087ea9a..fcd0c2ae 100644
--- a/content/io.js
+++ b/content/io.js
@@ -27,7 +27,7 @@ the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
}}} ***** END LICENSE BLOCK *****/
-vimperator.IO = function ()//{{{
+vimperator.IO = function () //{{{
{
////////////////////////////////////////////////////////////////////////////////
////////////////////// PRIVATE SECTION /////////////////////////////////////////
@@ -290,6 +290,6 @@ vimperator.IO = function ()//{{{
}
};
//}}}
-};//}}}
+}; //}}}
// vim: set fdm=marker sw=4 ts=4 et:
diff --git a/content/modes.js b/content/modes.js
index 4df7856b..801ce404 100644
--- a/content/modes.js
+++ b/content/modes.js
@@ -26,7 +26,7 @@ the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
}}} ***** END LICENSE BLOCK *****/
-vimperator.modes = (function ()//{{{
+vimperator.modes = (function () //{{{
{
////////////////////////////////////////////////////////////////////////////////
////////////////////// PRIVATE SECTION /////////////////////////////////////////
@@ -233,6 +233,6 @@ vimperator.modes = (function ()//{{{
};
//}}}
-})();//}}}
+})(); //}}}
// vim: set fdm=marker sw=4 ts=4 et:
diff --git a/content/util.js b/content/util.js
index 99ad4119..97c5a4ca 100644
--- a/content/util.js
+++ b/content/util.js
@@ -217,6 +217,6 @@ vimperator.util = { //{{{
return strNum[0] + " " + unitVal[unitIndex];
}
-};//}}}
+}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: