1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 01:47:58 +01:00

add some missing fold markers

This commit is contained in:
Doug Kearns
2008-05-17 16:04:24 +00:00
parent 8a1162349a
commit f43fc67115
11 changed files with 10 additions and 32 deletions

View File

@@ -28,7 +28,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
// Do NOT create instances of this class yourself, use the helper method
// liberator.options.add() instead
liberator.Option = function (names, description, type, defaultValue, getter, setter, validator, completer)
liberator.Option = function (names, description, type, defaultValue, getter, setter, validator, completer) //{{{
{
if (!names || !type)
return null;
@@ -102,7 +102,6 @@ liberator.Option = function (names, description, type, defaultValue, getter, set
}; //}}}
liberator.Options = function () //{{{
{
////////////////////////////////////////////////////////////////////////////////
@@ -746,6 +745,7 @@ liberator.Options = function () //{{{
liberator.echoerr("E488: Trailing characters: " + name + "!");
}
};
//}}}
}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: