From 086255acef2ef6915836106e471fb4bc3c9a2c64 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 26 Feb 2011 12:59:58 +1100 Subject: [PATCH] Fix an autocmd message key typo. --- common/content/autocommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/autocommands.js b/common/content/autocommands.js index 57545448..2d960c83 100644 --- a/common/content/autocommands.js +++ b/common/content/autocommands.js @@ -237,7 +237,7 @@ var AutoCommands = Module("autocommands", { function (args) { // Vim compatible if (args.length == 0) - return void dactyl.echomsg(_("msg.noMatchingAutocmd")); + return void dactyl.echomsg(_("autocmd.noMatching")); let [event, url] = args; let defaultURL = url || buffer.uri.spec;