aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert2012-08-15 01:57:14 -0700
committerPaul Eggert2012-08-15 01:57:14 -0700
commit8453bb55239f4cba3bbb37e2dba416382ce07db2 (patch)
tree2eed4ecb0cda7276c54ac990bcd17695d227505f /lib-src
parentf2045622a553a1f3919ccef6d94fc6e1207e38f6 (diff)
downloademacs-8453bb55239f4cba3bbb37e2dba416382ce07db2.tar.gz
emacs-8453bb55239f4cba3bbb37e2dba416382ce07db2.zip
* 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 @@
12012-08-15 Paul Eggert <eggert@cs.ucla.edu>
2
3 * etags.c (Pascal_functions): Fix parenthesization typo.
4
12012-08-14 Paul Eggert <eggert@cs.ucla.edu> 52012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * make-docfile.c (enum global_type): Sort values roughly in 7 * 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)
4651 /* Check if this is an "extern" declaration. */ 4651 /* Check if this is an "extern" declaration. */
4652 if (*dbp == '\0') 4652 if (*dbp == '\0')
4653 continue; 4653 continue;
4654 if (lowcase (*dbp == 'e')) 4654 if (lowcase (*dbp) == 'e')
4655 { 4655 {
4656 if (nocase_tail ("extern")) /* superfluous, really! */ 4656 if (nocase_tail ("extern")) /* superfluous, really! */
4657 { 4657 {