b4n commented on this pull request.
> @@ -2742,8 +2793,12 @@ extern void anonGenerate (vString *buffer, const char
> *prefix, int kind)
vStringCopyS(buffer, prefix);
- unsigned int uHash = anonHash((const unsigned char
*)getInputFileName());
- sprintf(szNum,"%08x%02x%02x",uHash,lang -> anonumousIdentiferId, kind);
+/* GEANY DIFF */
+/* unsigned int uHash = anonHash((const unsigned char
*)getInputFileName());
+ sprintf(szNum,"%08x%02x%02x",uHash,lang -> anonumousIdentiferId, kind);
*/
+ sprintf(szNum,"%u", lang -> anonumousIdentiferId);
OK then.
--
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/2018#discussion_r247616901