From e810675add847489bc9f44e7982588f34863f299 Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Sun, 7 Jul 1996 01:07:32 +0000 Subject: [PATCH] (insert-directory): Fix previous change. --- lisp/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2