]> git.eshelyaron.com Git - emacs.git/commitdiff
(Freplace_match): Use UPPERCASEP instead of !NOCASEP.
authorAndreas Schwab <schwab@suse.de>
Sun, 15 Jan 2006 12:07:41 +0000 (12:07 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 15 Jan 2006 12:07:41 +0000 (12:07 +0000)
src/search.c

index ab4b2a0f5192d82feec77bbedb01c46afc68bea2..e12bf69d2a177f7bb8833fba5af4dc62319c8398 100644 (file)
@@ -2376,7 +2376,7 @@ since only regular expressions have distinguished subexpressions.  */)
              else
                some_multiletter_word = 1;
            }
-         else if (!NOCASEP (c))
+         else if (UPPERCASEP (c))
            {
              some_uppercase = 1;
              if (SYNTAX (prevc) != Sword)