From 5988c4fbf423ea82bc62405d052ab12ef32b3d26 Mon Sep 17 00:00:00 2001 From: teramako Date: Thu, 1 Jan 2009 00:23:15 +0900 Subject: [PATCH] not display the command when autocommand triggered --- common/content/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index c943fdb7..73d28fa8 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -272,7 +272,7 @@ function AutoCommands() //{{{ } else { - liberator.execute(commands.replaceTokens(autoCmd.command, args)); + liberator.execute(commands.replaceTokens(autoCmd.command, args),null,true); } } }