From ed8be2e2f268b57ba6096ed17bfcd5e0418af887 Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Sat, 1 Sep 2012 12:49:41 -0400 Subject: [PATCH] Bug #1059 - Fixed Bug #1059, where CmdEdit incorrectly ran gc. (Thanks to Louis-Claude Canon) --- ChangeLog | 1 + src/commands/CmdEdit.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d691fac08..1b60b9a91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,7 @@ Features + Virtual tags. Bugs + + Fixed bug #1059, where CmdEdit was running garbage collection. + Fixed bug #1065, where CmdShow issued messages in incorrect situations. + Fixed bug #1060, where an error was not thrown correctly. + Fixed bug #1043, where aliases were not recognized by bash autocompletion. diff --git a/src/commands/CmdEdit.cpp b/src/commands/CmdEdit.cpp index 70014e438..75f18dd7a 100644 --- a/src/commands/CmdEdit.cpp +++ b/src/commands/CmdEdit.cpp @@ -50,7 +50,7 @@ CmdEdit::CmdEdit () _usage = "task edit"; _description = STRING_CMD_EDIT_USAGE; _read_only = false; - _displays_id = true; + _displays_id = false; } ////////////////////////////////////////////////////////////////////////////////