Am 20.07.2014 14:35, schrieb Duy Nguyen:
On Sun, Jul 20, 2014 at 6:21 PM, René Scharfe <[email protected]> wrote:+char *xgetcwd(void) +{ + struct strbuf sb = STRBUF_INIT; + if (strbuf_add_cwd(&sb)) + die_errno("unable to get current working directory");Wrap the string with _() to make it translatable? I can't see why any script would want to grep this string..
Sure, good idea.
+ return strbuf_detach(&sb, NULL); +}
Thank you for the review, René -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

