From: Lars Magne Ingebrigtsen Date: Wed, 6 Jul 2011 17:45:01 +0000 (+0200) Subject: * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults X-Git-Tag: emacs-pretest-24.0.90~104^2~461^2~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe204702284fb69d07b35a0e3912fe939cf30ff8;p=emacs.git * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults to "\\sw\\|\\s_" (bug#358). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dcdbad05b5..68533f8e89e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2011-07-06 Lars Magne Ingebrigtsen + * 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. diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index 00e2ec802e2..540b93faad8 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -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)