diff options
| author | Paul Eggert | 2011-03-15 14:14:06 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-15 14:14:06 -0700 |
| commit | 5da9919f99ebacbc511113134ef8f687a562d5b8 (patch) | |
| tree | 93ca25d179a3ad53796e4132fc98c06ecb704a91 /src/dired.c | |
| parent | b313f9d86378db4dd4619923572b07513c53ceac (diff) | |
| download | emacs-5da9919f99ebacbc511113134ef8f687a562d5b8.tar.gz emacs-5da9919f99ebacbc511113134ef8f687a562d5b8.zip | |
Use functions, not macros, for up- and down-casing.
Diffstat (limited to 'src/dired.c')
| -rw-r--r-- | src/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c index 3e2ce5e96a6..176f14925b4 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -790,8 +790,8 @@ scmp (const char *s1, const char *s2, int len) | |||
| 790 | if (completion_ignore_case) | 790 | if (completion_ignore_case) |
| 791 | { | 791 | { |
| 792 | while (l | 792 | while (l |
| 793 | && (DOWNCASE ((unsigned char) *s1++) | 793 | && (downcase ((unsigned char) *s1++) |
| 794 | == DOWNCASE ((unsigned char) *s2++))) | 794 | == downcase ((unsigned char) *s2++))) |
| 795 | l--; | 795 | l--; |
| 796 | } | 796 | } |
| 797 | else | 797 | else |