> +             strcpy (CurrentDirectory, cwd);
> +     else
> +             sprintf (CurrentDirectory, "%s%c", cwd, OUTPUT_PATH_SEPARATOR);
> +     free (cwd);
> +}
> +#endif
> +
> +
> +extern boolean doesFileExist (const char *const fileName)
> +{
> +     GStatBuf fileStatus;
> +
> +     return (boolean) (g_stat (fileName, &fileStatus) == 0);
> +}
> +
> +extern boolean isRecursiveLink (const char* const dirName)

this was #if0'd, and the impl in UCTags is different (but this one matches the 
old one we had, so I guess it's expected)

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1160/files/d440a81166e62d41e2b06d555b471db5fdd8d80d..ea72ecc00fc22f24eced3ffce7c7db67d5f02271#r73776454

Reply via email to