aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-02-11 09:58:10 -0800
committerPaul Eggert2018-02-11 09:58:31 -0800
commit5a75cd1f8fbdb1dc5dbadf32c1e224e32a712194 (patch)
tree80fe82d9964c09bceaf385551cbc317904435884
parent13f4b518d0bb7cb4536d341a2a2c8d0b76f75f6b (diff)
downloademacs-5a75cd1f8fbdb1dc5dbadf32c1e224e32a712194.tar.gz
emacs-5a75cd1f8fbdb1dc5dbadf32c1e224e32a712194.zip
* src/xdisp.c (Vmessage_stack): Fix comment to match code.
-rw-r--r--src/xdisp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 9a5bd2eb96c..7c90d32db69 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -440,10 +440,8 @@ static Lisp_Object default_invis_vector[3];
440 440
441Lisp_Object echo_area_window; 441Lisp_Object echo_area_window;
442 442
443/* List of pairs (MESSAGE . MULTIBYTE). The function save_message 443/* Stack of messages, which are pushed by push_message and popped and
444 pushes the current message and the value of 444 displayed by restore_message. */
445 message_enable_multibyte on the stack, the function restore_message
446 pops the stack and displays MESSAGE again. */
447 445
448static Lisp_Object Vmessage_stack; 446static Lisp_Object Vmessage_stack;
449 447