[lice @ shit loads of stuff]
[lice.git] / src / dired.lisp
blobe563cacfd0d25875b23249bb9373097615f93ca6
1 ;;; Lisp functions for making directory listings.
3 (in-package "LICE")
5 (defvar completion-ignored-extensions nil
6 "Completion ignores file names ending in any string in this list.
7 It does not ignore them if all possible completions end in one of
8 these strings or when displaying a list of completions.
9 It ignores directory names if they match any string in this list which
10 ends in a slash.")
12 (defun directory-files ()
13 (error "unimplemented directory-files"))
15 (defun directory-files-and-attributes ()
16 (error "unimplemented directory-files-and-attributes"))
18 (defun file-name-completion ()
19 (error "unimplemented file-name-completion"))
21 (defun file-name-all-completions ()
22 (error "unimplemented file-name-all-completions"))
24 (defun file-attributes ()
25 (error "unimplemented file-attributes"))
27 (defun file-attributes-lessp ()
28 (error "unimplemented file-attributes-lessp"))