diff options
| author | Gerd Moellmann | 2000-11-16 17:09:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-16 17:09:04 +0000 |
| commit | 4104194e1c28a2d8156dfebd1400542caf6f4ad0 (patch) | |
| tree | 4ed84a5cd51d29259b7e38fa3729dfb4123ab560 | |
| parent | 407b432881cad19029c80f9626cc84e0a9321caa (diff) | |
| download | emacs-4104194e1c28a2d8156dfebd1400542caf6f4ad0.tar.gz emacs-4104194e1c28a2d8156dfebd1400542caf6f4ad0.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | man/files.texi | 3 |
3 files changed, 9 insertions, 1 deletions
| @@ -41,6 +41,9 @@ lacks unexec, asynchronous processes, and networking support. | |||
| 41 | 41 | ||
| 42 | * Changes in Emacs 21.1 | 42 | * Changes in Emacs 21.1 |
| 43 | 43 | ||
| 44 | ** When visiting a file with M-x find-file-literally, no newlines will | ||
| 45 | be added to the end of the buffer because of `require-final-newline'. | ||
| 46 | |||
| 44 | ** auto-compression mode is no longer enabled just by loading jka-compr.el. | 47 | ** auto-compression mode is no longer enabled just by loading jka-compr.el. |
| 45 | To control it, set `auto-compression-mode' via Custom or use the | 48 | To control it, set `auto-compression-mode' via Custom or use the |
| 46 | `auto-compression-mode' command. | 49 | `auto-compression-mode' command. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ccaf136403e..86bd76bc1da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2000-11-16 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-11-16 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * files.el (basic-save-buffer): Don't add a newline if | ||
| 4 | find-file-literally is non-nil. | ||
| 5 | (find-file-literally): Extend doc string. | ||
| 6 | |||
| 3 | * sort.el (sort-columns): If sort-fold-case it non-nil, invoke | 7 | * sort.el (sort-columns): If sort-fold-case it non-nil, invoke |
| 4 | sort(1) with the `-f' argument. | 8 | sort(1) with the `-f' argument. |
| 5 | 9 | ||
diff --git a/man/files.texi b/man/files.texi index 5466417c3b6..2accbadbc03 100644 --- a/man/files.texi +++ b/man/files.texi | |||
| @@ -278,7 +278,8 @@ system. @xref{Frames}. | |||
| 278 | encoding or conversion, use the @kbd{M-x find-file-literally} command. | 278 | encoding or conversion, use the @kbd{M-x find-file-literally} command. |
| 279 | It visits a file, like @kbd{C-x C-f}, but does not do format conversion | 279 | It visits a file, like @kbd{C-x C-f}, but does not do format conversion |
| 280 | (@pxref{Formatted Text}), character code conversion (@pxref{Coding | 280 | (@pxref{Formatted Text}), character code conversion (@pxref{Coding |
| 281 | Systems}), or automatic uncompression (@pxref{Compressed Files}). | 281 | Systems}), or automatic uncompression (@pxref{Compressed Files}), and |
| 282 | does not add a final newline because of @code{require-final-newline}. | ||
| 282 | If you already have visited the same file in the usual (non-literal) | 283 | If you already have visited the same file in the usual (non-literal) |
| 283 | manner, this command asks you whether to visit it literally instead. | 284 | manner, this command asks you whether to visit it literally instead. |
| 284 | 285 | ||