1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 18:14:13 +01:00

Fix :echo undefined

This commit is contained in:
Kris Maglione
2008-12-11 15:22:01 -05:00
parent 016770bf7d
commit 0f330b3a15
4 changed files with 26 additions and 22 deletions

View File

@@ -631,6 +631,8 @@ function CommandLine() //{{{
arg = util.objectToString(arg, useColor);
else if (typeof arg == "string" && /\n/.test(arg))
arg = <span highlight="CmdOutput">{arg}</span>;
else
arg = String(arg);
return arg;
}