diff options
| author | Paul Eggert | 2012-08-15 01:57:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-15 01:57:14 -0700 |
| commit | 8453bb55239f4cba3bbb37e2dba416382ce07db2 (patch) | |
| tree | 2eed4ecb0cda7276c54ac990bcd17695d227505f /lib-src | |
| parent | f2045622a553a1f3919ccef6d94fc6e1207e38f6 (diff) | |
| download | emacs-8453bb55239f4cba3bbb37e2dba416382ce07db2.tar.gz emacs-8453bb55239f4cba3bbb37e2dba416382ce07db2.zip | |
* etags.c (Pascal_functions): Fix parenthesization typo.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/etags.c | 2 |
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 @@ | |||
| 1 | 2012-08-15 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * etags.c (Pascal_functions): Fix parenthesization typo. | ||
| 4 | |||
| 1 | 2012-08-14 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2012-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 | { |