aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-02 10:23:33 +0000
committerGerd Moellmann2000-12-02 10:23:33 +0000
commit1636ca09ab7db26b28351f9d1643f07c407691fd (patch)
treed478f3b8506a2439a676caf4a17918a04d069029
parenta01cfb776c39f9cb2d99d662f20dc628c4ee2411 (diff)
downloademacs-1636ca09ab7db26b28351f9d1643f07c407691fd.tar.gz
emacs-1636ca09ab7db26b28351f9d1643f07c407691fd.zip
*** empty log message ***
-rw-r--r--etc/NEWS1
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lispref/advice.texi3
-rw-r--r--man/basic.texi7
4 files changed, 11 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index ada9082e906..dd77f48c117 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
45changed to nil, i.e. C-n will no longer add newlines at the end of a 46changed to nil, i.e. C-n will no longer add newlines at the end of a
46buffer by default. 47buffer by default.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d575cba5b9a..e1f8d7cf346 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-12-02 Gerd Moellmann <gerd@gnu.org>
2
3 * simple.el (next-line-add-newlines): Change default to nil.
4
12000-12-01 Eli Zaretskii <eliz@is.elta.co.il> 52000-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
45lines; it is the standard binding of @kbd{C-n}. When used on the last 45lines; it is the standard binding of @kbd{C-n}. When used on the last
46line of the buffer, this command inserts a newline to create a line to 46line of the buffer, this command inserts a newline to create a line to
47move to (if @code{next-line-add-newlines} is non-@code{nil}). 47move to if @code{next-line-add-newlines} is non-@code{nil} (its default
48is @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},
50which would insert a new line at the beginning of the buffer for the 51which 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
223it. If the variable @code{next-line-add-newlines} is @code{nil}, then 223newline 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