From: Richard M. Stallman Date: Thu, 16 Aug 2007 02:21:37 +0000 (+0000) Subject: (Fcommandp): Add parens to clarify. X-Git-Tag: emacs-pretest-23.0.90~11488 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e33efc40a52243253bf3c6bf7f4ea492a194546;p=emacs.git (Fcommandp): Add parens to clarify. --- diff --git a/src/ChangeLog b/src/ChangeLog index 0ae50d2fa67..2f006840cbc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2007-08-16 Richard Stallman + + * eval.c (Fcommandp): Add parens to clarify. + + * minibuf.c (Fall_completions): Use enum for type of table. + + * emacs.c (USAGE2): Improve text. + 2007-08-15 Philippe Waroquiers * term.c (tty_default_color_capabilities): Explicitly initialize diff --git a/src/eval.c b/src/eval.c index 6ce64bc4d8c..e53d164a354 100644 --- a/src/eval.c +++ b/src/eval.c @@ -2073,7 +2073,7 @@ then strings and vectors are not accepted. */) /* Strings and vectors are keyboard macros. */ if (STRINGP (fun) || VECTORP (fun)) - return NILP (for_call_interactively) ? Qt : Qnil; + return (NILP (for_call_interactively) ? Qt : Qnil); /* Lists may represent commands. */ if (!CONSP (fun))