aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 {