diff src/minibuf.c @ 18613:614b916ff5bf

Fix bugs with inappropriate mixing of Lisp_Object with int.
author Richard M. Stallman <rms@gnu.org>
date Fri, 04 Jul 1997 20:44:52 +0000
parents 2b1d3330e750
children db49bcffa9b2
line wrap: on
line diff
--- a/src/minibuf.c	Fri Jul 04 20:43:49 1997 +0000
+++ b/src/minibuf.c	Fri Jul 04 20:44:52 1997 +0000
@@ -956,7 +956,7 @@
 
   if (completion_ignore_case)
     {
-      while (l && EQ (DOWNCASE (*s1++), DOWNCASE (*s2++)))
+      while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
 	l--;
     }
   else