On Sun, Jul 20, 2014 at 6:21 PM, René Scharfe [off-list ref] 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..
+ return strbuf_detach(&sb, NULL);
+}
--
Duy