Am 20.07.2014 14:35, schrieb Duy Nguyen:
On Sun, Jul 20, 2014 at 6:21 PM, René Scharfe [off-list ref] wrote:
quoted
+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.
quoted
+ return strbuf_detach(&sb, NULL);
+}
Thank you for the review,
René