]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/ztree/ztree-dir.el
* ztree/ztree-diff-model.el (ztree-diff-node): Use cl-defstruct
[gnu-emacs-elpa] / packages / ztree / ztree-dir.el
index 3dd87b7f78e462f598a0b939b6956fc1c52a3c5f..08f4041175b59c207a58f637302615c1d0fe8c88 100644 (file)
@@ -115,14 +115,14 @@ Otherwise, the ztree window is used to find the file."
     (let ((buf-name (concat "*Directory " path " tree*")))
       (ztree-view buf-name
                   (expand-file-name (substitute-in-file-name path))
-                  'ztree-file-not-hidden
-                  'ztree-insert-buffer-header
-                  'ztree-file-short-name
-                  'file-directory-p
-                  'string-equal
-                  '(lambda (x) (directory-files x 'full))
+                  #'ztree-file-not-hidden
+                  #'ztree-insert-buffer-header
+                  #'ztree-file-short-name
+                  #'file-directory-p
+                  #'string-equal
+                  (lambda (x) (directory-files x 'full))
                   nil                   ; face
-                  'ztree-find-file)))) ; action
+                  #'ztree-find-file)))) ; action
 
 
 (provide 'ztree-dir)