]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcommandp): Add parens to clarify.
authorRichard M. Stallman <rms@gnu.org>
Thu, 16 Aug 2007 02:21:37 +0000 (02:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 16 Aug 2007 02:21:37 +0000 (02:21 +0000)
src/ChangeLog
src/eval.c

index 0ae50d2fa67063781622989ada5d2523910f06c5..2f006840cbcdf6d6ec77a9886a5a97291f5b51b3 100644 (file)
@@ -1,3 +1,11 @@
+2007-08-16  Richard Stallman  <rms@gnu.org>
+
+       * eval.c (Fcommandp): Add parens to clarify.
+
+       * minibuf.c (Fall_completions): Use enum for type of table.
+
+       * emacs.c (USAGE2): Improve text.
+
 2007-08-15  Philippe Waroquiers  <philippe.waroquiers@eurocontrol.int>
 
        * term.c (tty_default_color_capabilities): Explicitly initialize
index 6ce64bc4d8c75c244a71afd57c8b94b560aa33cd..e53d164a354cbcd297fef1d8c1ffa0499af5ea45 100644 (file)
@@ -2073,7 +2073,7 @@ then strings and vectors are not accepted.  */)
 
   /* 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))