summaryrefslogtreecommitdiff
path: root/Build/source/texk/detex/TLpatches/patch-01-support-old-compiler
blob: d1cd8dce61e11b20ba0a47a2a9131c8884485531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- detex.l.orig	Mon Jun 15 20:23:15 2020
+++ detex.l	Tue Jun 16 06:09:30 2020
@@ -732,7 +732,8 @@
 void
 IncrLineNo()
 {
-	for (char* c=yytext; *c != '\0'; c++) {
+	char *c;
+	for (c=yytext; *c != '\0'; c++) {
 		if (*c == '\n') {
 			fFileLines[csb]++; fIsColumn0=1;
 		}