]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
authorGlenn Morris <rgm@gnu.org>
Tue, 14 Aug 2012 18:43:08 +0000 (14:43 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 14 Aug 2012 18:43:08 +0000 (14:43 -0400)
src/ChangeLog
src/eval.c

index 28e053be63f0226b35a2607e0af33fc9c170ec25..26369903c337b11c4c0292e9cd92ce65b6bbacea 100644 (file)
@@ -1,3 +1,7 @@
+2012-08-14  Glenn Morris  <rgm@gnu.org>
+
+       * eval.c (Fcalled_interactively_p): Doc fix.  (Bug#11747)
+
 2012-08-14  Ulrich Mueller  <ulm@gentoo.org>
 
        * systime.h (EMACS_TIME_CMP): Don't cast time_t values to long
index 4a3f5083b3b88a0f66cd5d3e556b98a5d4b1f07e..a2df5bfcff55586c8a4cb7a2a1dfb3759e879891 100644 (file)
@@ -560,11 +560,10 @@ thinking of using it for any other purpose, it is quite likely that
 you're making a mistake.  Think: what do you want to do when the
 command is called from a keyboard macro?
 
-This function is meant for implementing advice and other
-function-modifying features.  Instead of using this, it is sometimes
-cleaner to give your function an extra optional argument whose
-`interactive' spec specifies non-nil unconditionally (\"p\" is a good
-way to do this), or via (not (or executing-kbd-macro noninteractive)).  */)
+Instead of using this function, it is sometimes cleaner to give your
+function an extra optional argument whose `interactive' spec specifies
+non-nil unconditionally (\"p\" is a good way to do this), or via
+\(not (or executing-kbd-macro noninteractive)).  */)
   (Lisp_Object kind)
 {
   return ((INTERACTIVE || !EQ (kind, intern ("interactive")))