summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-15 01:57:14 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-08-15 01:57:14 -0700
commit8453bb55239f4cba3bbb37e2dba416382ce07db2 (patch)
tree2eed4ecb0cda7276c54ac990bcd17695d227505f /lib-src
parentf2045622a553a1f3919ccef6d94fc6e1207e38f6 (diff)
downloademacs-8453bb55239f4cba3bbb37e2dba416382ce07db2.tar.gz
* etags.c (Pascal_functions): Fix parenthesization typo.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/etags.c2
2 files changed, 5 insertions, 1 deletions
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 <eggert@cs.ucla.edu>
+
+ * etags.c (Pascal_functions): Fix parenthesization typo.
+
2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
* 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! */
{