diff options
author | Sebastian Kremer <sk@thp.uni-koeln.de> | 1992-10-04 10:36:03 +0000 |
---|---|---|
committer | Sebastian Kremer <sk@thp.uni-koeln.de> | 1992-10-04 10:36:03 +0000 |
commit | a1e2f9109ad756ea645d40a4060993c72cb0ab87 (patch) | |
tree | f6efeed91b8f8f8b7e7c3c0f9167a9c07031d987 /lisp/ls-lisp.el | |
parent | 89cd98f3efe0168822c727c185126efb4d96b332 (diff) | |
download | emacs-a1e2f9109ad756ea645d40a4060993c72cb0ab87.tar.gz |
(dired-lisp-ls): var `short' was erronously unbound.
Diffstat (limited to 'lisp/ls-lisp.el')
-rw-r--r-- | lisp/ls-lisp.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index c77bb046c6a..506b706bf39 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -2,8 +2,8 @@ ;;;; READ THE WARNING BELOW BEFORE USING THIS PROGRAM! -(defconst dired-lisp-version (substring "$Revision: 1.7 $" 11 -2) - "$Id: dired-lisp.el,v 1.7 1992/04/30 10:37:15 sk Exp sk $") +(defconst dired-lisp-version (substring "$Revision: 1.8 $" 11 -2) + "$Id: dired-lisp.el,v 1.8 1992/05/01 17:50:56 sk Exp sk $") ;; Copyright (C) 1992 by Sebastian Kremer <sk@thp.uni-koeln.de> @@ -25,7 +25,7 @@ ;; LCD Archive Entry: ;; dired-lisp|Sebastian Kremer|sk@thp.uni-koeln.de ;; |emulate Tree Dired's ls completely in Emacs Lisp -;; |$Date: 1992/04/30 10:37:15 $|$Revision: 1.7 $| +;; |$Date: 1992/05/01 17:50:56 $|$Revision: 1.8 $| ;; INSTALLATION ======================================================= ;; @@ -129,6 +129,7 @@ SWITCHES default to dired-listing-switches." (default-directory dir);; so that file-attributes works (sum 0) elt + short (file-list (directory-files dir nil wildcard)) file-alist ;; do all bindings here for speed |