Browse Source

'\v' is not a K&R character

ceriel 33 years ago
parent
commit
604a0b2074
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/fortran/comp/pread.c

+ 1 - 1
lang/fortran/comp/pread.c

@@ -786,7 +786,7 @@ Pfile(fname)
 	Pfname = fname;
 	Plineno = 1;
 	if (!Pct[' ']) {
-		for(s = " \t\n\r\v\f"; *s; s++)
+		for(s = " \t\n\r\013\f"; *s; s++) /* ACK_MOD: \v is not K&R C */
 			Pct[*s] = P_space;
 		for(s = "*,();"; *s; s++)
 			Pct[*s] = P_delim;