From e5b21557c60d56ae5738b2af49f1f88d7c2644d3 Mon Sep 17 00:00:00 2001 From: Daniel Bainton Date: Sat, 11 Oct 2008 17:39:32 +0000 Subject: [PATCH] Make the command not found error be meaningful on both vimperator and muttator --- content/liberator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/liberator.js b/content/liberator.js index daa8734d..fc38fd2e 100644 --- a/content/liberator.js +++ b/content/liberator.js @@ -675,7 +675,7 @@ const liberator = (function () //{{{ if (command === null) { - err = "E492: Not a browser command: " + str; + err = "E492: Not a " + liberator.config.name.toLowerCase() + " command: " + str; liberator.focusContent(); } else if (command.action === null)