mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(insert-directory): When converting SWITCHES string to a list, put back
in original order.
This commit is contained in:
parent
52a2a9c397
commit
51a2264fb5
@ -2661,7 +2661,7 @@ If WILDCARD, it also runs the shell specified by `shell-file-name'."
|
||||
(setq list (cons (substring switches 0 (match-beginning 0))
|
||||
list)
|
||||
switches (substring switches (match-end 0))))
|
||||
(setq list (cons switches list)))))
|
||||
(setq list (cons (nreverse switches) list)))))
|
||||
(append list
|
||||
(list
|
||||
(if full-directory-p
|
||||
|
Loading…
Reference in New Issue
Block a user