From c22966a3c997c8a250ca02f07f758298c41f6344 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Tue, 28 May 2013 11:24:14 +0200 Subject: [PATCH] Fixed garbage file create on :quit (#22). On 64Bit systems there was created a garbage file with content 'quit', if the browser was closed by command :quit in inputbox. This happend because the quit command was run first and freed the command history file, after that the last command was tried to be saved in history. This patch moved the save of command in history before the call of the command, this sounds a little unusual, but I think this is ok for this case. --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index b7d4fb7..47741c2 100644 --- a/src/main.c +++ b/src/main.c @@ -482,14 +482,14 @@ static void inputbox_activate_cb(GtkEntry *entry) case '?': a.i = *text == '/' ? VB_SEARCH_FORWARD : VB_SEARCH_BACKWARD; a.s = (command + 1); - command_search(&a); history_add(HISTORY_SEARCH, command + 1); + command_search(&a); break; case ':': completion_clean(); - command_run_string((command + 1)); history_add(HISTORY_COMMAND, command + 1); + command_run_string((command + 1)); break; } -- 2.20.1