aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-04-28 22:05:02 +0000
committerRichard M. Stallman <[email protected]>2002-04-28 22:05:02 +0000
commitc837f4f9c357f23dc7ed4f91cc9b883d326ecfb5 (patch)
treec028de2e4a0e82ceb96d4af201bcab1b17f5c1ad /src
parent72cc582e6971d28f6c9110433578ced2d46ace46 (diff)
(Fall_completions, Ftry_completion): New arg to Fcommandp.
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 92a3302208..388c912292 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1193,7 +1193,7 @@ is used to further constrain the set of candidates. */)
if (!NILP (predicate))
{
if (EQ (predicate, Qcommandp))
- tem = Fcommandp (elt);
+ tem = Fcommandp (elt, Qnil);
else
{
GCPRO4 (tail, string, eltstring, bestmatch);
@@ -1420,7 +1420,7 @@ are ignored unless STRING itself starts with a space. */)
if (!NILP (predicate))
{
if (EQ (predicate, Qcommandp))
- tem = Fcommandp (elt);
+ tem = Fcommandp (elt, Qnil);
else
{
GCPRO4 (tail, eltstring, allmatches, string);