1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 02:42:25 +01:00

make the :pagestyle invalid arg error message more Vimish

This commit is contained in:
Doug Kearns
2008-08-17 13:42:25 +00:00
parent 13248e0422
commit 54cbed3d74

View File

@@ -171,8 +171,7 @@ liberator.Buffer = function () //{{{
"number", 0, "number", 0,
{ {
validator: function (value) { return value >= 0; } validator: function (value) { return value >= 0; }
} });
);
liberator.options.add(["showstatuslinks", "ssli"], liberator.options.add(["showstatuslinks", "ssli"],
"Show the destination of the link under the cursor in the status bar", "Show the destination of the link under the cursor in the status bar",
@@ -474,7 +473,7 @@ liberator.Buffer = function () //{{{
if (args && !titles.some(function (title) { return title == args; })) if (args && !titles.some(function (title) { return title == args; }))
{ {
liberator.echoerr("Exxx: No matching stylesheet"); liberator.echoerr("E475: Invalid argument: " + args);
return; return;
} }