[Helm] Expand ‘db/important-documents-path’ before removing it

This commit is contained in:
Daniel - 2017-10-27 21:57:02 +02:00
parent 9b8c2ca7a7
commit 0803cd9abb
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
1 changed files with 22 additions and 21 deletions

View File

@ -301,6 +301,7 @@ The result will be a list of cons cells, where the car is the
path relative to `db/important-documents and the cdr is the full
path."
;; code adapted from `directory-files-recursively
(let ((db/important-documents-path (expand-file-name db/important-documents-path)))
(cl-labels ((all-files-in-dir (dir)
(let ((result nil)
(files nil))
@ -321,7 +322,7 @@ path."
files))))
(nconc result (nreverse files)))))
(when (file-directory-p db/important-documents-path)
(all-files-in-dir db/important-documents-path))))
(all-files-in-dir db/important-documents-path)))))
(defun db/system-open (path)
"Open PATH with default program as defined by the underlying system."