aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-15 14:14:06 -0700
committerPaul Eggert2011-03-15 14:14:06 -0700
commit5da9919f99ebacbc511113134ef8f687a562d5b8 (patch)
tree93ca25d179a3ad53796e4132fc98c06ecb704a91 /src/search.c
parentb313f9d86378db4dd4619923572b07513c53ceac (diff)
downloademacs-5da9919f99ebacbc511113134ef8f687a562d5b8.tar.gz
emacs-5da9919f99ebacbc511113134ef8f687a562d5b8.zip
Use functions, not macros, for up- and down-casing.
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c
index 9869a7aad55..bf93a7fe442 100644
--- a/src/search.c
+++ b/src/search.c
@@ -2469,7 +2469,7 @@ since only regular expressions have distinguished subexpressions. */)
2469 else 2469 else
2470 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte); 2470 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte);
2471 2471
2472 if (LOWERCASEP (c)) 2472 if (lowercasep (c))
2473 { 2473 {
2474 /* Cannot be all caps if any original char is lower case */ 2474 /* Cannot be all caps if any original char is lower case */
2475 2475
@@ -2479,7 +2479,7 @@ since only regular expressions have distinguished subexpressions. */)
2479 else 2479 else
2480 some_multiletter_word = 1; 2480 some_multiletter_word = 1;
2481 } 2481 }
2482 else if (UPPERCASEP (c)) 2482 else if (uppercasep (c))
2483 { 2483 {
2484 some_uppercase = 1; 2484 some_uppercase = 1;
2485 if (SYNTAX (prevc) != Sword) 2485 if (SYNTAX (prevc) != Sword)