diff options
| author | Eli Zaretskii | 2008-09-06 12:52:42 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-09-06 12:52:42 +0000 |
| commit | 08792c113a276f9b4ae032decfdb0ce1289e1380 (patch) | |
| tree | 8aa9f977c755b4a6eaa40c37e9924c8607712890 | |
| parent | cdba036d53c0f608da654ec0d99d6acd2c3fc9f6 (diff) | |
| download | emacs-08792c113a276f9b4ae032decfdb0ce1289e1380.tar.gz emacs-08792c113a276f9b4ae032decfdb0ce1289e1380.zip | |
(msdos-show-help): Don't truncate lines while displaying help echo messages.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/term/pc-win.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 970ee1086fc..f9785313c97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-06 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * term/pc-win.el (msdos-show-help): Don't truncate lines while | ||
| 4 | displaying help echo messages. | ||
| 5 | |||
| 1 | 2008-09-06 Martin Rudalics <rudalics@gmx.at> | 6 | 2008-09-06 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * subr.el (symbol-file): Fix doc-string. | 8 | * 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." | |||
| 269 | ((stringp help) | 269 | ((stringp help) |
| 270 | (unless msdos-previous-message | 270 | (unless msdos-previous-message |
| 271 | (setq msdos-previous-message (current-message))) | 271 | (setq msdos-previous-message (current-message))) |
| 272 | (let ((message-truncate-lines t) | 272 | (let ((message-truncate-lines nil) |
| 273 | (message-log-max nil)) | 273 | (message-log-max nil)) |
| 274 | (message "%s" (replace-regexp-in-string "\n" ", " help)))) | 274 | (message "%s" (replace-regexp-in-string "\n" ", " help)))) |
| 275 | ((stringp msdos-previous-message) | 275 | ((stringp msdos-previous-message) |