(find-file-noselect): When we expand a wildcard, return
a list of buffers, as we should do according to the doc string.
This commit is contained in:
parent
5b7bc0da05
commit
648ec2ff27
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ that are visiting the various files."
|
|||
(find-file-wildcards nil))
|
||||
(if (null files)
|
||||
(find-file-noselect filename)
|
||||
(car (mapcar #'find-file-noselect files))))
|
||||
(mapcar #'find-file-noselect files)))
|
||||
(let* ((buf (get-file-buffer filename))
|
||||
(truename (abbreviate-file-name (file-truename filename)))
|
||||
(number (nthcdr 10 (file-attributes truename)))
|
||||
|
|
Loading…
Add table
Reference in a new issue