diff options
| author | Richard M. Stallman | 2007-08-16 02:21:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-08-16 02:21:37 +0000 |
| commit | 6e33efc40a52243253bf3c6bf7f4ea492a194546 (patch) | |
| tree | d4b4d21bced36077d05a227fe557b685902e9823 /src/eval.c | |
| parent | f6d4c7a40b48e6b838d994365e1624961cfb543d (diff) | |
| download | emacs-6e33efc40a52243253bf3c6bf7f4ea492a194546.tar.gz emacs-6e33efc40a52243253bf3c6bf7f4ea492a194546.zip | |
(Fcommandp): Add parens to clarify.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */) | |||
| 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)) |