summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
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