diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-04 20:44:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-04 20:44:52 +0000 |
commit | 52e8dfd960f9fa9c53f9ee06c33338d241cca2a3 (patch) | |
tree | e73c9450d93e194e2a566b8cc96f5afc02e54857 /src/minibuf.c | |
parent | 35934fcb35d1aeedd805d1b027ce5b59f5a0c79d (diff) | |
download | emacs-52e8dfd960f9fa9c53f9ee06c33338d241cca2a3.tar.gz |
Fix bugs with inappropriate mixing of Lisp_Object with int.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index a4dd9379e0a..4a2c805f170 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -956,7 +956,7 @@ scmp (s1, s2, len) if (completion_ignore_case) { - while (l && EQ (DOWNCASE (*s1++), DOWNCASE (*s2++))) + while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++)) l--; } else |