comparison 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
comparison
equal deleted inserted replaced
82403:9f1e0c774487 82404:b3fc112aac24
2071 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE 2071 return ((ASIZE (fun) & PSEUDOVECTOR_SIZE_MASK) > COMPILED_INTERACTIVE
2072 ? Qt : if_prop); 2072 ? Qt : if_prop);
2073 2073
2074 /* Strings and vectors are keyboard macros. */ 2074 /* Strings and vectors are keyboard macros. */
2075 if (STRINGP (fun) || VECTORP (fun)) 2075 if (STRINGP (fun) || VECTORP (fun))
2076 return NILP (for_call_interactively) ? Qt : Qnil; 2076 return (NILP (for_call_interactively) ? Qt : Qnil);
2077 2077
2078 /* Lists may represent commands. */ 2078 /* Lists may represent commands. */
2079 if (!CONSP (fun)) 2079 if (!CONSP (fun))
2080 return Qnil; 2080 return Qnil;
2081 funcar = XCAR (fun); 2081 funcar = XCAR (fun);