diff options
| author | Erik Naggum <erik@naggum.no> | 1996-07-07 01:07:32 +0000 |
|---|---|---|
| committer | Erik Naggum <erik@naggum.no> | 1996-07-07 01:07:32 +0000 |
| commit | e810675add847489bc9f44e7982588f34863f299 (patch) | |
| tree | 1b0bc084609bc828de7ec8d068f7776f16a71248 /lisp/files.el | |
| parent | 6f89d28ab449805db76410c551f1b945e5f03c94 (diff) | |
| download | emacs-e810675add847489bc9f44e7982588f34863f299.tar.gz | |
(insert-directory): Fix previous change.
Diffstat (limited to 'lisp/files.el')
| -rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index a7414a787e3..100b1e6ac21 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -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 (nreverse switches) list))))) + (setq list (nreverse (cons switches list)))))) (append list (list (if full-directory-p |
