From c5b954f485cc9f6fabf9706bb86b2c0e67f431b5 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Thu, 15 Sep 1988 20:08:01 -0800 Subject: [PATCH] p hid previous define of p SCCS-vsn: usr.bin/indent/lexi.c 5.11 --- usr/src/usr.bin/indent/lexi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/src/usr.bin/indent/lexi.c b/usr/src/usr.bin/indent/lexi.c index 70c5a20d24..263c162dde 100644 --- a/usr/src/usr.bin/indent/lexi.c +++ b/usr/src/usr.bin/indent/lexi.c @@ -19,7 +19,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)lexi.c 5.10 (Berkeley) %G%"; +static char sccsid[] = "@(#)lexi.c 5.11 (Berkeley) %G%"; #endif /* not lint */ /* @@ -247,9 +247,9 @@ lexi() } /* end of switch */ } /* end of if (found_it) */ if (*buf_ptr == '(' && ps.tos <= 1 && ps.ind_level == 0) { - register char *p = buf_ptr; - while (p < buf_end) - if (*p++ == ')' && *p == ';') + register char *tp = buf_ptr; + while (tp < buf_end) + if (*tp++ == ')' && *tp == ';') goto not_proc; strncpy(ps.procname, token, sizeof ps.procname - 1); ps.in_parameter_declaration = 1; -- 2.20.1