From: Paul Eggert Date: Wed, 15 Aug 2012 08:57:14 +0000 (-0700) Subject: * etags.c (Pascal_functions): Fix parenthesization typo. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/8453bb55239f4cba3bbb37e2dba416382ce07db2 * etags.c (Pascal_functions): Fix parenthesization typo. --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 01248e5925..f3fd375100 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 69200b790f..9c03735c95 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! */ {