From b9c3a99783f96cc39c5e26b5dc55936e3adcd4d6 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 7 Nov 1991 09:53:11 +0000 Subject: [PATCH] '\v' is not a K&R character --- lang/fortran/comp/pread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/fortran/comp/pread.c b/lang/fortran/comp/pread.c index 5f521efac..9cde0d48d 100644 --- a/lang/fortran/comp/pread.c +++ b/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; -- 2.34.1