]> git.ipfire.org Git - thirdparty/git.git/commit - parse-options-cb.c
parse-options: replace opterror() with optname()
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 10 Nov 2018 05:16:11 +0000 (06:16 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Nov 2018 05:47:09 +0000 (14:47 +0900)
commit9440b831ad5b1750b65fa3f1d0b99179ab317c76
tree64f2fa307e00fef20bc714ca6ba06fcca1b65b79
parentc83d950e591c393c241dcd656d14a21cd16c2b81
parse-options: replace opterror() with optname()

Introduce optname() that does the early half of original opterror() to
come up with the name of the option reported back to the user, and use
it to kill opterror().  The callers of opterror() now directly call
error() using the string returned by opterror() instead.

There are a few issues with opterror()

- it tries to assemble an English sentence from pieces. This is not
  great for translators because we give them pieces instead of a full
  sentence.

- It's a wrapper around error() and needs some hack to let the
  compiler know it always returns -1.

- Since it takes a string instead of printf format, one call site has
  to assemble the string manually before passing to it.

Using error() directly solves the second and third problems.

It kind helps the first problem as well because "%s does foo" does
give a translator a full sentence in a sense and let them reorder if
needed. But it has limitations, if the subject part has to change
based on the rest of the sentence, that language is screwed. This is
also why I try to avoid calling optname() when 'flags' is known in
advance.

Mark of these strings for translation as well while at there.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/merge.c
builtin/revert.c
parse-options-cb.c
parse-options.c
parse-options.h
ref-filter.c
t/t4211-line-log.sh