summaryrefslogtreecommitdiff
path: root/lisp/complete.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-01-22 00:44:59 +0000
committerRichard M. Stallman <rms@gnu.org>1998-01-22 00:44:59 +0000
commitb3d8c659f57fa424722b295e658c369497a833b1 (patch)
tree62880384e2879af61257ec8bd3a27df37abe337f /lisp/complete.el
parent4a2f9c6aefdb14ce8c34ace4d7573b89d1cc13b7 (diff)
downloademacs-b3d8c659f57fa424722b295e658c369497a833b1.tar.gz
emacs-b3d8c659f57fa424722b295e658c369497a833b1.tar.bz2
emacs-b3d8c659f57fa424722b295e658c369497a833b1.zip
(PC-try-load-many-files): Load files in reverse
order so they come in the right order in the buffer list.
Diffstat (limited to 'lisp/complete.el')
-rw-r--r--lisp/complete.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/complete.el b/lisp/complete.el
index a20fb7d6516..022e9aebafb 100644
--- a/lisp/complete.el
+++ b/lisp/complete.el
@@ -781,16 +781,17 @@ or properties are considered."
(let* ((pat buffer-file-name)
(files (PC-expand-many-files pat))
(first (car files))
- (next files))
+ (next (reverse (cdr files))))
(kill-buffer (current-buffer))
(or files
(error "No matching files"))
;; Bring the other files (not the first) into buffers.
(save-window-excursion
- (while (setq next (cdr next))
+ (while next
(let ((buf (find-file-noselect (car next))))
;; Put this buffer at the front of the buffer list.
- (switch-to-buffer buf))))
+ (switch-to-buffer buf))
+ (setq next (cdr next))))
;; This modifies the `buf' variable inside find-file-noselect.
(setq buf (get-file-buffer first))
(if buf