From: Paul Eggert Date: Wed, 15 Aug 2012 08:57:14 +0000 (-0700) Subject: * etags.c (Pascal_functions): Fix parenthesization typo. X-Git-Tag: emacs-24.2.90~662 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8453bb55239f4cba3bbb37e2dba416382ce07db2;p=emacs.git * etags.c (Pascal_functions): Fix parenthesization typo. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 01248e59256..f3fd3751005 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2012-08-15 Paul Eggert + + * etags.c (Pascal_functions): Fix parenthesization typo. + 2012-08-14 Paul Eggert * make-docfile.c (enum global_type): Sort values roughly in diff --git a/lib-src/etags.c b/lib-src/etags.c index 69200b790fb..9c03735c954 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4651,7 +4651,7 @@ Pascal_functions (FILE *inf) /* Check if this is an "extern" declaration. */ if (*dbp == '\0') continue; - if (lowcase (*dbp == 'e')) + if (lowcase (*dbp) == 'e') { if (nocase_tail ("extern")) /* superfluous, really! */ {