# HG changeset patch # User Gerd Moellmann # Date 973011323 0 # Node ID dd4bceb945d33507004fddd565604d5eeb554a90 # Parent c587b5380fe0084dce3cd96a64bd325102b009df (find-file-noselect): When we expand a wildcard, return a list of buffers, as we should do according to the doc string. diff -r c587b5380fe0 -r dd4bceb945d3 lisp/files.el --- a/lisp/files.el Tue Oct 31 16:31:04 2000 +0000 +++ b/lisp/files.el Tue Oct 31 16:55:23 2000 +0000 @@ -1007,7 +1007,7 @@ (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)))