]> git.eshelyaron.com Git - emacs.git/commitdiff
* dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 17:45:01 +0000 (19:45 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 17:45:01 +0000 (19:45 +0200)
to "\\sw\\|\\s_" (bug#358).

lisp/ChangeLog
lisp/dabbrev.el

index 5dcdbad05b597dbbf307b7afcbfebbca51625c5c..68533f8e89eace187974e2c81b2ed0573fff176e 100644 (file)
@@ -1,5 +1,8 @@
 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
+       to "\\sw\\|\\s_" (bug#358).
+
        * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
        (dired-unmark-backward): Ditto.
        (dired-flag-backup-files): Ditto.
index 00e2ec802e25eb9a4e351b51159ee836e4cad88e..540b93faad83a42161fb1fab658bee39305c7560 100644 (file)
@@ -206,7 +206,8 @@ starting with or containing `no-'.  If you set this variable to
 expanding `yes-or-no-' signals an error because `-' is not part of a word;
 but expanding `yes-or-no' looks for a word starting with `no'.
 
-The recommended value is \"\\\\sw\\\\|\\\\s_\"."
+The recommended value is nil, which will make dabbrev default to
+using \"\\\\sw\\\\|\\\\s_\"."
   :type '(choice (const nil)
                 regexp)
   :group 'dabbrev)