diff options
author | Manuel Uberti <manuel.uberti@inventati.org> | 2020-11-04 15:41:53 +0100 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2020-11-04 10:42:20 -0500 |
commit | 43431f7108a6cb2af09b5f73092c7ab43f0d5199 (patch) | |
tree | 547f93470fa79edb9a9c4daaa171b13ca2acae0b | |
parent | d408866ff2a0de7af5d8bb40d9c1c310573f1800 (diff) | |
download | emacs-43431f7108a6cb2af09b5f73092c7ab43f0d5199.tar.gz emacs-43431f7108a6cb2af09b5f73092c7ab43f0d5199.tar.bz2 emacs-43431f7108a6cb2af09b5f73092c7ab43f0d5199.zip |
* lisp/progmodes/project.el (project--files-in-directory): Fix formatting
Copyright-paperwork-exempt: yes
-rw-r--r-- | lisp/progmodes/project.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 8f7482a23d7..6c647a092a9 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -301,8 +301,8 @@ to find the list of ignores for each directory." (split-string files) (concat " -o " find-name-arg " ")) " " - (shell-quote-argument ")"))"") - ))) + (shell-quote-argument ")")) + "")))) (project--remote-file-names (sort (split-string (shell-command-to-string command) "\0" t) #'string<)))) |