1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-27 02:10:52 -08:00

(Fall_completions, Ftry_completion): New arg to Fcommandp.

This commit is contained in:
Richard M. Stallman 2002-04-28 22:05:02 +00:00
parent 72cc582e69
commit c837f4f9c3

View file

@ -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);