From eb51e66563fde6f70a654014116d575c8fddbd20 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 13 Jul 1994 04:03:09 +0000 Subject: [PATCH] (insert-directory): Fix previous change. --- lisp/files.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index 5206a5871dd..d08196d9493 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2126,9 +2126,9 @@ If WILDCARD, it also runs the shell specified by `shell-file-name'." " -d " (if (stringp switches) switches - (mapconcat 'identity switches " ") + (mapconcat 'identity switches " ")) " " - pattern)))) + pattern))) ;; SunOS 4.1.3, SVr4 and others need the "." to list the ;; directory if FILE is a symbolic link. (apply 'call-process -- 2.39.5