diff src/eval.c @ 82404:b3fc112aac24

(Fcommandp): Add parens to clarify.
author Richard M. Stallman <rms@gnu.org>
date Thu, 16 Aug 2007 02:21:29 +0000
parents e5a68f18fcb9
children 617c0965e1f4
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))