+ The 'execute' command should not be considered a 'write' command.
This commit is contained in:
Paul Beckingham 2013-03-06 21:04:46 -05:00
parent 08b959aafc
commit 88968ac36c
3 changed files with 5 additions and 3 deletions

View file

@ -93,6 +93,8 @@ Bugs
builds (thanks to Jakub Wilk). builds (thanks to Jakub Wilk).
+ Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as + Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as
narrow characters (thanks to Roy Zuo). narrow characters (thanks to Roy Zuo).
+ Fixed bug #1191, which kept file locks active for longer than necessary,
and caused the 'execute' command to be considered a 'write' command.
+ Improved hyphenation by splitting on commas (even if no whitespace after). + Improved hyphenation by splitting on commas (even if no whitespace after).
Leads to better output of, for example, 'task show', where comma-separated Leads to better output of, for example, 'task show', where comma-separated
lists are common. lists are common.

View file

@ -40,8 +40,8 @@ CmdExec::CmdExec ()
_keyword = "execute"; _keyword = "execute";
_usage = "task execute <external command>"; _usage = "task execute <external command>";
_description = STRING_CMD_EXEC_USAGE; _description = STRING_CMD_EXEC_USAGE;
_read_only = false; _read_only = true;
_displays_id = true; _displays_id = false;
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////