From 8c95e664530b0287a4755f6a945d8ac624bf6bd9 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 14 Aug 2012 14:43:08 -0400 Subject: [PATCH] * src/eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747) --- src/ChangeLog | 4 ++++ src/eval.c | 9 ++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 28e053be63f..26369903c33 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2012-08-14 Glenn Morris + + * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747) + 2012-08-14 Ulrich Mueller * systime.h (EMACS_TIME_CMP): Don't cast time_t values to long diff --git a/src/eval.c b/src/eval.c index 4a3f5083b3b..a2df5bfcff5 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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"))) -- 2.39.2