[lice @ more rearranging. define-key modifications to accomodate bindings.lisp. this...
[lice.git] / src / dired.lisp
blob8d32268ae68bee2f4f33555c715863694901e202
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"))
15 (defun directory-files-and-attributes ()
16 (error "unimplemented"))
18 (defun file-name-completion ()
19 (error "unimplemented"))
21 (defun file-name-all-completions ()
22 (error "unimplemented"))
24 (defun file-attributes ()
25 (error "unimplemented"))
27 (defun file-attributes-lessp ()
28 (error "unimplemented"))