Mercurial > emacs
changeset 44939:d4ace8c553e4
(Fall_completions, Ftry_completion): New arg to Fcommandp.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Apr 2002 22:05:02 +0000 |
parents | 358d42530d42 |
children | 2686a6ef3d19 |
files | src/minibuf.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/minibuf.c Sun Apr 28 21:48:39 2002 +0000 +++ b/src/minibuf.c Sun Apr 28 22:05:02 2002 +0000 @@ -1193,7 +1193,7 @@ if (!NILP (predicate)) { if (EQ (predicate, Qcommandp)) - tem = Fcommandp (elt); + tem = Fcommandp (elt, Qnil); else { GCPRO4 (tail, string, eltstring, bestmatch); @@ -1420,7 +1420,7 @@ if (!NILP (predicate)) { if (EQ (predicate, Qcommandp)) - tem = Fcommandp (elt); + tem = Fcommandp (elt, Qnil); else { GCPRO4 (tail, eltstring, allmatches, string);