Mercurial > emacs
changeset 82404:b3fc112aac24
(Fcommandp): Add parens to clarify.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 16 Aug 2007 02:21:29 +0000 |
parents | 9f1e0c774487 |
children | 907505b33af3 |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Thu Aug 16 02:20:58 2007 +0000 +++ b/src/eval.c Thu Aug 16 02:21:29 2007 +0000 @@ -2073,7 +2073,7 @@ /* 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))