summaryrefslogtreecommitdiff
path: root/lisp/dabbrev.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r--lisp/dabbrev.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el
index 8dbe0629239..234f83f24b3 100644
--- a/lisp/dabbrev.el
+++ b/lisp/dabbrev.el
@@ -711,6 +711,15 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
dabbrev--friend-buffer-list
(append dabbrev--friend-buffer-list
non-friend-buffer-list)))))
+ ;; Move buffers that are visible on the screen
+ ;; to the front of the list.
+ (if dabbrev--friend-buffer-list
+ (let ((w (next-window (selected-window))))
+ (while (not (eq w (selected-window)))
+ (setq dabbrev--friend-buffer-list
+ (cons (window-buffer w)
+ (delq (window-buffer w) dabbrev--friend-buffer-list)))
+ (setq w (next-window w)))))
;; Walk through the buffers
(while (and (not expansion) dabbrev--friend-buffer-list)
(setq dabbrev--last-buffer