aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-05-05 22:31:30 +0000
committerRichard M. Stallman2001-05-05 22:31:30 +0000
commit05be3833f3e04c01e325362948c4c70bc17f564d (patch)
tree48c373252f23977a481e4d66b2d4655e4720abc5
parente9db3bf2d97e81a1427b54e796d4fa207618d5d0 (diff)
downloademacs-05be3833f3e04c01e325362948c4c70bc17f564d.tar.gz
emacs-05be3833f3e04c01e325362948c4c70bc17f564d.zip
(dabbrev-select-buffers-function): Doc fix.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/dabbrev.el4
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2c6b82876e0..69717701b9e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12001-05-05 Richard M. Stallman <rms@gnu.org>
2
3 * help.el (help-xref-symbol-regexp): Recognize "source of"
4 and friends, meaning make a link to the source file.
5 (help-make-xrefs): Handle "source of" and friends
6 by constructing a link that visits the source file.
7
8 * dabbrev.el (dabbrev-select-buffers-function): Doc fix.
9
12001-05-04 Stefan Monnier <monnier@cs.yale.edu> 102001-05-04 Stefan Monnier <monnier@cs.yale.edu>
2 11
3 * progmodes/cperl-mode.el (cperl-font-lock-keywords) 12 * progmodes/cperl-mode.el (cperl-font-lock-keywords)
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el
index 297ad595883..38c3a19b5ac 100644
--- a/lisp/dabbrev.el
+++ b/lisp/dabbrev.el
@@ -241,8 +241,8 @@ The default value is t."
241(defvar dabbrev-select-buffers-function 'dabbrev--select-buffers 241(defvar dabbrev-select-buffers-function 'dabbrev--select-buffers
242 "A function that selects buffers that should be searched by dabbrev. 242 "A function that selects buffers that should be searched by dabbrev.
243The function should take no arguments and return a list of buffers to 243The function should take no arguments and return a list of buffers to
244search for expansions. Have a look at `dabbrev--select-buffers' for 244search for expansions. See the source of `dabbrev--select-buffers'
245an example. 245for an example.
246 246
247A mode setting this variable should make it buffer local.") 247A mode setting this variable should make it buffer local.")
248 248