From 52e8dfd960f9fa9c53f9ee06c33338d241cca2a3 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 4 Jul 1997 20:44:52 +0000 Subject: Fix bugs with inappropriate mixing of Lisp_Object with int. --- src/minibuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/minibuf.c') 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 -- cgit v1.2.1