]> code.delx.au - gnu-emacs/commitdiff
*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Tue, 6 Feb 2001 12:19:34 +0000 (12:19 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 6 Feb 2001 12:19:34 +0000 (12:19 +0000)
etc/NEWS
lisp/ChangeLog
man/abbrevs.texi
man/basic.texi

index a9d260463d44571832d66a428e35e489a5113d13..aafefa8d9a1a7f0a094809fa03b3903e1ac4b0e2 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1558,7 +1558,7 @@ appropriate for C-style escape sequences in strings.
 ** A new command `view-emacs-problems' (C-h P) displays the PROBLEMS file.
 
 +++
-** The Dabbrev package has a new user-option `dabbrev-ignored-regexps'
+** The Dabbrev package has a new user-option `dabbrev-ignored-buffer-regexps'
 containing a list of regular expressions.  Buffers matching a regular
 expression from that list, are not checked.
 
index ad4725b524f7d428c26823b9ba3fa6d1df411a3e..fd4975d7a1e7e818f5bf72d35d2beebe44ab963c 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-06  Gerd Moellmann  <gerd@gnu.org>
+
+       * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
+       dabbrev-ignored-regexps.
+
 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * simple.el (kill-line): Doc fix.
index 165527141c13e7e20d4331f1da0cc8e033a7b32b..bd09917884b5887bcf8875848ff3b06b1af9ca09 100644 (file)
@@ -350,10 +350,10 @@ buffers, unless you have set @code{dabbrev-check-all-buffers} to
 @code{nil}.
 
 @vindex dabbrev-ignored-buffer-regexps
-  A more fine control of the buffers that are scanned is possible by
-customizing the variable @code{dabbrev-ignored-buffer-regexps}, which should
-contain a list of regular expressions.  Buffers matching a regular
-expression from that list are not searched.
+  For finer control over which buffers to scan, customize the variable
+@code{dabbrev-ignored-buffer-regexps}.  Its value is a list of regular
+expressions.  If a buffer's name matches any of these regular
+expressions, dynamic abbrev expansion skips that buffer.
 
   A negative argument to @kbd{M-/}, as in @kbd{C-u - M-/}, says to
 search first for expansions after point, and second for expansions
index c323e1064b1988d0d504b65c43ea2c1437d43c86..d741a8a16effca7b565537788dfbc58ff4338742 100644 (file)
@@ -175,8 +175,7 @@ Move backward one word (@code{backward-word}).
 @item C-n
 Move down one line, vertically (@code{next-line}).  This command
 attempts to keep the horizontal position unchanged, so if you start in
-the middle of one line, you end in the middle of the next.  When on
-the last line of text, @kbd{C-n} creates a new line and moves onto it.
+the middle of one line, you end in the middle of the next.
 @item C-p
 Move up one line, vertically (@code{previous-line}).
 @item M-r
@@ -219,10 +218,11 @@ to the end of another line.  Normally, @code{track-eol} is @code{nil}.
 @xref{Variables}, for how to set variables such as @code{track-eol}.
 
 @vindex next-line-add-newlines
-  If non-@code{nil}, @kbd{C-n} on the last line of a buffer appends a
-newline to it.  If the variable @code{next-line-add-newlines} is
-@code{nil}, the default, then @kbd{C-n} gets an error instead (like
-@kbd{C-p} on the first line).
+  @kbd{C-n} normally gets an error when you use it on the last line of
+the buffer (just as @kbd{C-p} gets an error on the first line).  But
+if you set the variable @code{next-line-add-newlines} to a
+non-@code{nil} value, @kbd{C-n} on the last line of a buffer creates
+an additional line at the end and moves down onto it.
 
 @node Erasing  
 @section Erasing Text