From: Jiang Xin Date: Wed, 25 Jul 2012 14:53:12 +0000 (+0800) Subject: Remove dead code which contains bad gettext block X-Git-Tag: v1.7.12-rc2~10^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/31023e0a9fdba7ed6458caf2082dd6d82df6a56c?ds=inline;hp=31023e0a9fdba7ed6458caf2082dd6d82df6a56c Remove dead code which contains bad gettext block Found this dead code when I examine gettext messages in shell scripts start with dash ('-' or '--'). An error will be raised for this case, like: $ gettext "-d option is no longer supported. Do not use." gettext: missing arguments Indead, this code has been left as dead for a long time, as Jonathan points out: The git am -d/--dotest option has errored out with a message since e72c7406 (am: remove support for -d .dotest, 2008-03-04). The error message about lack of support was eliminated along with other cleanups (probably by mistake) a year later by removing the option from the option table in 98ef23b3 (git-am: minor cleanups, 2009-01-28). But the code to handle -d and --dotest stayed around even though ever since then it could not be tripped. Remove this dead code. Signed-off-by: Jiang Xin Reviewed-by: Stefano Lattarini Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano ---