diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
commit | 76550a57f934a39f067da196e94b10797efca240 (patch) | |
tree | 91d58a3fc4388cc3bf00987c0cca050b6bd20baf /lisp/ls-lisp.el | |
parent | aae56ea7ca8c74e7bb5595b828851aaa9f947792 (diff) | |
download | emacs-76550a57f934a39f067da196e94b10797efca240.tar.gz |
Add standard library headers.
Diffstat (limited to 'lisp/ls-lisp.el')
-rw-r--r-- | lisp/ls-lisp.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 94b0ed4385e..54da7fdc438 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -1,4 +1,7 @@ -;;;; directory.el - emulate insert-directory completely in Emacs Lisp +;;; ls-lisp.el --- emulate insert-directory completely in Emacs Lisp + +;; Author: Sebastian Kremer <sk@thp.uni-koeln.de> +;; Keywords: unix ;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de> @@ -45,6 +48,8 @@ ;; Recognize some more ls switches: R F +;;; Code: + (defun insert-directory (file &optional switches wildcard full-directory-p) "Insert directory listing for of FILE, formatted according to SWITCHES. Leaves point after the inserted text. @@ -227,4 +232,4 @@ The switches that work are: A a c i r S s t u" (provide 'ls-lisp) -; eof +;;; ls-lisp.el ends here |