aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 92a33022080..388c912292c 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1193,7 +1193,7 @@ is used to further constrain the set of candidates. */)
1193 if (!NILP (predicate)) 1193 if (!NILP (predicate))
1194 { 1194 {
1195 if (EQ (predicate, Qcommandp)) 1195 if (EQ (predicate, Qcommandp))
1196 tem = Fcommandp (elt); 1196 tem = Fcommandp (elt, Qnil);
1197 else 1197 else
1198 { 1198 {
1199 GCPRO4 (tail, string, eltstring, bestmatch); 1199 GCPRO4 (tail, string, eltstring, bestmatch);
@@ -1420,7 +1420,7 @@ are ignored unless STRING itself starts with a space. */)
1420 if (!NILP (predicate)) 1420 if (!NILP (predicate))
1421 { 1421 {
1422 if (EQ (predicate, Qcommandp)) 1422 if (EQ (predicate, Qcommandp))
1423 tem = Fcommandp (elt); 1423 tem = Fcommandp (elt, Qnil);
1424 else 1424 else
1425 { 1425 {
1426 GCPRO4 (tail, eltstring, allmatches, string); 1426 GCPRO4 (tail, eltstring, allmatches, string);