=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ctags/lisp.c,v retrieving revision 1.7 retrieving revision 1.8 diff -c -r1.7 -r1.8 *** src/usr.bin/ctags/lisp.c 2012/03/04 04:05:15 1.7 --- src/usr.bin/ctags/lisp.c 2013/11/26 13:18:55 1.8 *************** *** 1,4 **** ! /* $OpenBSD: lisp.c,v 1.7 2012/03/04 04:05:15 fgsch Exp $ */ /* $NetBSD: lisp.c,v 1.3 1995/03/26 20:14:09 glass Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: lisp.c,v 1.8 2013/11/26 13:18:55 deraadt Exp $ */ /* $NetBSD: lisp.c,v 1.3 1995/03/26 20:14:09 glass Exp $ */ /* *************** *** 67,75 **** if (cicmp("wrapper") || cicmp("whopper")) special = YES; } ! for (; !isspace(*lbp); ++lbp) continue; ! for (; isspace(*lbp); ++lbp) continue; for (cp = lbp; *cp && *cp != '\n'; ++cp) continue; --- 67,75 ---- if (cicmp("wrapper") || cicmp("whopper")) special = YES; } ! for (; !isspace((unsigned char)*lbp); ++lbp) continue; ! for (; isspace((unsigned char)*lbp); ++lbp) continue; for (cp = lbp; *cp && *cp != '\n'; ++cp) continue;