diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dabbrev.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ff57af78c32..acb67992603 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-06-21 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * dabbrev.el (dabbrev--select-buffers): Fix last change. | ||
| 4 | |||
| 1 | 2001-06-20 Richard M. Stallman <rms@gnu.org> | 5 | 2001-06-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * dabbrev.el (dabbrev--make-friend-buffer-list): New function, | 7 | * dabbrev.el (dabbrev--make-friend-buffer-list): New function, |
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." | |||
| 669 | (and (not (eq (current-buffer) buffer)) | 669 | (and (not (eq (current-buffer) buffer)) |
| 670 | (not (dabbrev--ignore-buffer-p buffer)) | 670 | (not (dabbrev--ignore-buffer-p buffer)) |
| 671 | (boundp 'dabbrev-friend-buffer-function) | 671 | (boundp 'dabbrev-friend-buffer-function) |
| 672 | (funcall dabbrev-friend-buffer-function buffer))))) | 672 | (funcall dabbrev-friend-buffer-function buffer)))) |
| 673 | 673 | ||
| 674 | (defun dabbrev--try-find (abbrev reverse n ignore-case) | 674 | (defun dabbrev--try-find (abbrev reverse n ignore-case) |
| 675 | "Search for ABBREV, backwards if REVERSE, N times. | 675 | "Search for ABBREV, backwards if REVERSE, N times. |