1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 20:07:59 +01:00

Fix output of :let when no variables are defined.

This commit is contained in:
Doug Kearns
2010-09-28 18:36:00 +10:00
parent f3be395b0c
commit 0d56dac3ac

View File

@@ -1224,10 +1224,10 @@ const Options = Module("options", {
})
}
</table>;
if (str.*.length())
dactyl.echo(str, commandline.FORCE_MULTILINE);
else
if (str.text().length() == str.*.length())
dactyl.echomsg("No variables found");
else
dactyl.echo(str, commandline.FORCE_MULTILINE);
return;
}