emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109627: * etags.c (Pascal_functions)


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109627: * etags.c (Pascal_functions): Fix parenthesization typo.
Date: Wed, 15 Aug 2012 01:57:14 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109627
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Wed 2012-08-15 01:57:14 -0700
message:
  * etags.c (Pascal_functions): Fix parenthesization typo.
modified:
  lib-src/ChangeLog
  lib-src/etags.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2012-08-14 17:45:25 +0000
+++ b/lib-src/ChangeLog 2012-08-15 08:57:14 +0000
@@ -1,3 +1,7 @@
+2012-08-15  Paul Eggert  <address@hidden>
+
+       * etags.c (Pascal_functions): Fix parenthesization typo.
+
 2012-08-14  Paul Eggert  <address@hidden>
 
        * make-docfile.c (enum global_type): Sort values roughly in

=== modified file 'lib-src/etags.c'
--- a/lib-src/etags.c   2012-07-10 21:48:34 +0000
+++ b/lib-src/etags.c   2012-08-15 08:57:14 +0000
@@ -4651,7 +4651,7 @@
          /* 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! */
                {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]