aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2007-08-16 02:21:37 +0000
committerRichard M. Stallman2007-08-16 02:21:37 +0000
commit6e33efc40a52243253bf3c6bf7f4ea492a194546 (patch)
treed4b4d21bced36077d05a227fe557b685902e9823 /src
parentf6d4c7a40b48e6b838d994365e1624961cfb543d (diff)
downloademacs-6e33efc40a52243253bf3c6bf7f4ea492a194546.tar.gz
emacs-6e33efc40a52243253bf3c6bf7f4ea492a194546.zip
(Fcommandp): Add parens to clarify.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/eval.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0ae50d2fa67..2f006840cbc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12007-08-16 Richard Stallman <rms@gnu.org>
2
3 * eval.c (Fcommandp): Add parens to clarify.
4
5 * minibuf.c (Fall_completions): Use enum for type of table.
6
7 * emacs.c (USAGE2): Improve text.
8
12007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int> 92007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
2 10
3 * term.c (tty_default_color_capabilities): Explicitly initialize 11 * 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. */)
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))