From 08792c113a276f9b4ae032decfdb0ce1289e1380 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 6 Sep 2008 12:52:42 +0000 Subject: [PATCH] (msdos-show-help): Don't truncate lines while displaying help echo messages. --- lisp/ChangeLog | 5 +++++ lisp/term/pc-win.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 970ee1086fc..f9785313c97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-09-06 Eli Zaretskii + + * term/pc-win.el (msdos-show-help): Don't truncate lines while + displaying help echo messages. + 2008-09-06 Martin Rudalics * subr.el (symbol-file): Fix doc-string. diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el index 61211e65a1e..7b3516ec870 100644 --- a/lisp/term/pc-win.el +++ b/lisp/term/pc-win.el @@ -269,7 +269,7 @@ are fixed-pitch." ((stringp help) (unless msdos-previous-message (setq msdos-previous-message (current-message))) - (let ((message-truncate-lines t) + (let ((message-truncate-lines nil) (message-log-max nil)) (message "%s" (replace-regexp-in-string "\n" ", " help)))) ((stringp msdos-previous-message) -- 2.39.5