summaryrefslogtreecommitdiff
path: root/lisp/term
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2008-09-06 12:52:42 +0000
committerEli Zaretskii <eliz@gnu.org>2008-09-06 12:52:42 +0000
commit08792c113a276f9b4ae032decfdb0ce1289e1380 (patch)
tree8aa9f977c755b4a6eaa40c37e9924c8607712890 /lisp/term
parentcdba036d53c0f608da654ec0d99d6acd2c3fc9f6 (diff)
downloademacs-08792c113a276f9b4ae032decfdb0ce1289e1380.tar.gz
(msdos-show-help): Don't truncate lines while displaying help echo messages.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/pc-win.el2
1 files changed, 1 insertions, 1 deletions
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)