aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-24 18:48:24 +0000
committerGerd Moellmann2000-04-24 18:48:24 +0000
commitabfcc168d3ccc3247bb19029cd23db3b0544ce98 (patch)
tree690ced8989fb861f25aad14799bada66a60254a5
parent73f13e5a9d6b83e3986069cdca433469f5b79851 (diff)
downloademacs-abfcc168d3ccc3247bb19029cd23db3b0544ce98.tar.gz
emacs-abfcc168d3ccc3247bb19029cd23db3b0544ce98.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog5
3 files changed, 13 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 88829953fed..426a485eca3 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -16,6 +16,10 @@ images and toolkit scrollbars. Use the --help option to list them.
16 16
17* Changes in Emacs 21.1 17* Changes in Emacs 21.1
18 18
19** Emacs' auto-save list files are now by default stored in a
20sub-directory `.emacs.d/auto-save-list/' of the user's home directory.
21You can customize `auto-save-list-prefix' to change this location.
22
19** On window-systems, additional space can be put between text lines 23** On window-systems, additional space can be put between text lines
20on the display using several methods 24on the display using several methods
21 25
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 92a3a562eef..94aa19f81f3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-04-24 Gerd Moellmann <gerd@gnu.org>
2
3 * startup.el (auto-save-list-file-prefix): Set default to
4 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
5
12000-04-24 Sam Steingold <sds@gnu.org> 62000-04-24 Sam Steingold <sds@gnu.org>
2 7
3 * time-stamp.el (time-stamp-string-preprocess): Always convert 8 * time-stamp.el (time-stamp-string-preprocess): Always convert
diff --git a/src/ChangeLog b/src/ChangeLog
index dfd2a897790..3bcd7dcc734 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12000-04-24 Gerd Moellmann <gerd@gnu.org> 12000-04-24 Gerd Moellmann <gerd@gnu.org>
2 2
3 * fileio.c (Fdo_auto_save): Create directories for auto-save
4 list file if necessary.
5
3 * xdisp.c (init_iterator): Set iterator's extra_line_spacing 6 * xdisp.c (init_iterator): Set iterator's extra_line_spacing
4 from buffer or frame. 7 from buffer or frame.
5 (automatic_hscrolling_p): New variable. 8 (automatic_hscrolling_p): New variable.
@@ -18,7 +21,7 @@
18 21
19 * buffer.c (init_buffer_once): Handle extra_line_spacing. 22 * buffer.c (init_buffer_once): Handle extra_line_spacing.
20 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'. 23 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
21 (reset_buffer): Don't initialize extra2 and extra3. Intialize 24 (reset_buffer): Don't initialize extra2 and extra3. Initialize
22 extra_line_spacing from default value. 25 extra_line_spacing from default value.
23 (init_buffer_once): Initialize default value of extra_line_spacing. 26 (init_buffer_once): Initialize default value of extra_line_spacing.
24 27