diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-06-21 07:42:04 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-06-21 07:42:04 +0000 |
commit | 2ebf8f54cb0a49f18cebb58bed4c84cff7c49174 (patch) | |
tree | edd09e7e35db10e672fa04a150518cd44756c04c /lisp/dabbrev.el | |
parent | c2c6918d8f67b3566e1f6502f8f87a29e103af60 (diff) | |
download | emacs-2ebf8f54cb0a49f18cebb58bed4c84cff7c49174.tar.gz emacs-2ebf8f54cb0a49f18cebb58bed4c84cff7c49174.tar.bz2 emacs-2ebf8f54cb0a49f18cebb58bed4c84cff7c49174.zip |
(dabbrev--select-buffers): Fix last change.
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index aa92a4cc6aa..0f0f85b4255 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -669,7 +669,7 @@ It returns the list of the buffers that are not discarded." (and (not (eq (current-buffer) buffer)) (not (dabbrev--ignore-buffer-p buffer)) (boundp 'dabbrev-friend-buffer-function) - (funcall dabbrev-friend-buffer-function buffer))))) + (funcall dabbrev-friend-buffer-function buffer)))) (defun dabbrev--try-find (abbrev reverse n ignore-case) "Search for ABBREV, backwards if REVERSE, N times. |