Remove unnecessary code

There was no need to remove the last element. It was added to remove a
blank string if the file ended with a blank line, but that blank
string was harmless.
This commit is contained in:
contrapunctus 2020-01-13 16:15:03 +05:30
parent 688eb730ae
commit d67f6721d7
1 changed files with 2 additions and 2 deletions

View File

@ -66,12 +66,12 @@ the files listed."
((derived-mode-p 'text-mode)
(--> (buffer-substring-no-properties (point-min)
(point-max))
(split-string it "\n")
(-drop-last 1 it))) ;; why?
(split-string it "\n")))
(t (directory-files default-directory))))
(paths (--remove (or (equal it ".")
(equal it ".."))
paths))
;; recurse with prefix arg, or if every path is a directory
(recurse (or prefix
(-every? #'file-directory-p paths)))
;; remove directories if not running recursively