diff options
| author | Gerd Moellmann | 2000-12-02 10:23:33 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-02 10:23:33 +0000 |
| commit | 1636ca09ab7db26b28351f9d1643f07c407691fd (patch) | |
| tree | d478f3b8506a2439a676caf4a17918a04d069029 | |
| parent | a01cfb776c39f9cb2d99d662f20dc628c4ee2411 (diff) | |
| download | emacs-1636ca09ab7db26b28351f9d1643f07c407691fd.tar.gz emacs-1636ca09ab7db26b28351f9d1643f07c407691fd.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 1 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lispref/advice.texi | 3 | ||||
| -rw-r--r-- | man/basic.texi | 7 |
4 files changed, 11 insertions, 4 deletions
| @@ -41,6 +41,7 @@ lacks unexec, asynchronous processes, and networking support. | |||
| 41 | 41 | ||
| 42 | * Changes in Emacs 21.1 | 42 | * Changes in Emacs 21.1 |
| 43 | 43 | ||
| 44 | +++ | ||
| 44 | ** The default for user-option `next-line-add-newlines' has been | 45 | ** The default for user-option `next-line-add-newlines' has been |
| 45 | changed to nil, i.e. C-n will no longer add newlines at the end of a | 46 | changed to nil, i.e. C-n will no longer add newlines at the end of a |
| 46 | buffer by default. | 47 | buffer by default. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d575cba5b9a..e1f8d7cf346 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-12-02 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (next-line-add-newlines): Change default to nil. | ||
| 4 | |||
| 1 | 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il> | 5 | 2000-12-01 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 6 | ||
| 3 | * files.el (revert-buffer, recover-file): Bind | 7 | * files.el (revert-buffer, recover-file): Bind |
diff --git a/lispref/advice.texi b/lispref/advice.texi index 9fe5179e105..c860f5dd5d2 100644 --- a/lispref/advice.texi +++ b/lispref/advice.texi | |||
| @@ -44,7 +44,8 @@ function (or a new command) which uses the existing function. | |||
| 44 | The command @code{next-line} moves point down vertically one or more | 44 | The command @code{next-line} moves point down vertically one or more |
| 45 | lines; it is the standard binding of @kbd{C-n}. When used on the last | 45 | lines; it is the standard binding of @kbd{C-n}. When used on the last |
| 46 | line of the buffer, this command inserts a newline to create a line to | 46 | line of the buffer, this command inserts a newline to create a line to |
| 47 | move to (if @code{next-line-add-newlines} is non-@code{nil}). | 47 | move to if @code{next-line-add-newlines} is non-@code{nil} (its default |
| 48 | is @code{nil}.) | ||
| 48 | 49 | ||
| 49 | Suppose you wanted to add a similar feature to @code{previous-line}, | 50 | Suppose you wanted to add a similar feature to @code{previous-line}, |
| 50 | which would insert a new line at the beginning of the buffer for the | 51 | which would insert a new line at the beginning of the buffer for the |
diff --git a/man/basic.texi b/man/basic.texi index d92937ad177..f75a446f27e 100644 --- a/man/basic.texi +++ b/man/basic.texi | |||
| @@ -219,9 +219,10 @@ to the end of another line. Normally, @code{track-eol} is @code{nil}. | |||
| 219 | @xref{Variables}, for how to set variables such as @code{track-eol}. | 219 | @xref{Variables}, for how to set variables such as @code{track-eol}. |
| 220 | 220 | ||
| 221 | @vindex next-line-add-newlines | 221 | @vindex next-line-add-newlines |
| 222 | Normally, @kbd{C-n} on the last line of a buffer appends a newline to | 222 | If non-@code{nil}, @kbd{C-n} on the last line of a buffer appends a |
| 223 | it. If the variable @code{next-line-add-newlines} is @code{nil}, then | 223 | newline to it. If the variable @code{next-line-add-newlines} is |
| 224 | @kbd{C-n} gets an error instead (like @kbd{C-p} on the first line). | 224 | @code{nil}, the default, then @kbd{C-n} gets an error instead (like |
| 225 | @kbd{C-p} on the first line). | ||
| 225 | 226 | ||
| 226 | @node Erasing | 227 | @node Erasing |
| 227 | @section Erasing Text | 228 | @section Erasing Text |