summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-04 20:44:52 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-04 20:44:52 +0000
commit52e8dfd960f9fa9c53f9ee06c33338d241cca2a3 (patch)
treee73c9450d93e194e2a566b8cc96f5afc02e54857 /src/minibuf.c
parent35934fcb35d1aeedd805d1b027ce5b59f5a0c79d (diff)
downloademacs-52e8dfd960f9fa9c53f9ee06c33338d241cca2a3.tar.gz
Fix bugs with inappropriate mixing of Lisp_Object with int.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c2
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