aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-13 23:51:46 +0000
committerGerd Moellmann2000-06-13 23:51:46 +0000
commit25fa6debbea3ba1ac14ae834736340de85a44317 (patch)
tree0f176eb120747e8b7b93d0ada522039dbfb721d3
parent25e381684c51a75283bc42fab73a70248fa03916 (diff)
downloademacs-25fa6debbea3ba1ac14ae834736340de85a44317.tar.gz
emacs-25fa6debbea3ba1ac14ae834736340de85a44317.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--src/ChangeLog19
2 files changed, 23 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index fd2b817a496..0751469e9bd 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1222,6 +1222,10 @@ functionality with aliases for the mldrag functions.
1222* Lisp changes made after edition 2.6 of the Emacs Lisp Manual, 1222* Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
1223(Display-related features are described in a page of their own below.) 1223(Display-related features are described in a page of their own below.)
1224 1224
1225** If the variable `message-truncate-lines' is bound to t around a
1226call to `message', the echo area will not be resized to display that
1227message; it will be truncated instead.
1228
1225** The variable line-number-display-limit can now be set to nil, 1229** The variable line-number-display-limit can now be set to nil,
1226meaning no limit. 1230meaning no limit.
1227 1231
diff --git a/src/ChangeLog b/src/ChangeLog
index acfdcff4338..bc8dbe3b919 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12000-06-14 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines): New
4 variables.
5 (ensure_echo_area_buffers): Initialize echo buffer's
6 truncate lines setting to nil.
7 (with_echo_area_buffer): Don't set the echo buffer's truncate
8 lines setting here.
9 (set_message_1): Set it here, instead, based on the value
10 of message_truncate_lines.
11 (resize_mini_window): Handle case that lines are truncated.
12 (syms_of_xdisp): Initialize Qmessage_truncate_lines. DEFVAR_BOOL
13 message-truncate-lines.
14
15 * keyboard.c (read_char): Bind message-truncate-lines to t
16 while displaying a help-echo.
17
18 * lisp.h (Qmessage_truncate_lines): External declaration.
19
12000-06-13 Gerd Moellmann <gerd@gnu.org> 202000-06-13 Gerd Moellmann <gerd@gnu.org>
2 21
3 * xdisp.c (Vline_number_display_limit): Renamed from 22 * xdisp.c (Vline_number_display_limit): Renamed from