diff options
| author | Gerd Moellmann | 2000-04-24 18:48:24 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-24 18:48:24 +0000 |
| commit | abfcc168d3ccc3247bb19029cd23db3b0544ce98 (patch) | |
| tree | 690ced8989fb861f25aad14799bada66a60254a5 | |
| parent | 73f13e5a9d6b83e3986069cdca433469f5b79851 (diff) | |
| download | emacs-abfcc168d3ccc3247bb19029cd23db3b0544ce98.tar.gz emacs-abfcc168d3ccc3247bb19029cd23db3b0544ce98.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
3 files changed, 13 insertions, 1 deletions
| @@ -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 | ||
| 20 | sub-directory `.emacs.d/auto-save-list/' of the user's home directory. | ||
| 21 | You 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 |
| 20 | on the display using several methods | 24 | on 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 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-04-24 Sam Steingold <sds@gnu.org> | 6 | 2000-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 @@ | |||
| 1 | 2000-04-24 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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 | ||