aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2012-11-15 21:40:54 -0500
committerGlenn Morris2012-11-15 21:40:54 -0500
commitd56f2e49b2353336e853025219440c3e1572524e (patch)
treec5207be71fe6a33c0569fb448a8acfc15225f698 /src
parent662b0ee67c701dbae7c15094e2d6d3d64dfe5e8e (diff)
downloademacs-d56f2e49b2353336e853025219440c3e1572524e.tar.gz
emacs-d56f2e49b2353336e853025219440c3e1572524e.zip
* src/editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/editfns.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d2e7a96f275..b218e42b3f2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-11-16 Glenn Morris <rgm@gnu.org>
2
3 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
4
12012-11-15 Stefan Monnier <monnier@iro.umontreal.ca> 52012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * eval.c (Finteractive_p): Revert lexbind-merge mishap. 7 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
diff --git a/src/editfns.c b/src/editfns.c
index c5d4ed295ab..8122ffdd0d4 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3434,8 +3434,8 @@ static ptrdiff_t message_length;
3434 3434
3435DEFUN ("message", Fmessage, Smessage, 1, MANY, 0, 3435DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3436 doc: /* Display a message at the bottom of the screen. 3436 doc: /* Display a message at the bottom of the screen.
3437The message also goes into the `*Messages*' buffer. 3437The message also goes into the `*Messages*' buffer, if `message-log-max'
3438\(In keyboard macros, that's all it does.) 3438is non-nil. (In keyboard macros, that's all it does.)
3439Return the message. 3439Return the message.
3440 3440
3441The first argument is a format control string, and the rest are data 3441The first argument is a format control string, and the rest are data