mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
* etags.c (Pascal_functions): Fix parenthesization typo.
This commit is contained in:
parent
f2045622a5
commit
8453bb5523
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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! */
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue