From dff1920d6c46fab26fbfdb0ea9a8f904bd26418a Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 25 Jul 2000 19:26:24 +0000 Subject: KNF --- usr.bin/ctags/yacc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/ctags/yacc.c b/usr.bin/ctags/yacc.c index e2cb49d1b9c..056030e447b 100644 --- a/usr.bin/ctags/yacc.c +++ b/usr.bin/ctags/yacc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yacc.c,v 1.2 1996/06/26 05:32:31 deraadt Exp $ */ +/* $OpenBSD: yacc.c,v 1.3 2000/07/25 19:26:23 deraadt Exp $ */ /* $NetBSD: yacc.c,v 1.3 1995/03/26 20:14:12 glass Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)yacc.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: yacc.c,v 1.2 1996/06/26 05:32:31 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: yacc.c,v 1.3 2000/07/25 19:26:23 deraadt Exp $"; #endif #endif /* not lint */ @@ -98,7 +98,7 @@ y_entries() in_rule = NO; break; default: - if (in_rule || !isalpha(c) && c != '.' && c != '_') + if (in_rule || (!isalpha(c) && c != '.' && c != '_')) break; sp = tok; *sp++ = c; -- cgit v1.2.3