Changeset 3799 for vendor/emacs-CVS_HEAD/lisp/eshell/em-ls.el
- Timestamp:
- 08/06/05 09:04:04 (3 years ago)
- Files:
-
- vendor/emacs-CVS_HEAD/lisp/eshell/em-ls.el (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/lisp/eshell/em-ls.el
r3756 r3799 1 1 ;;; em-ls.el --- implementation of ls in Lisp 2 2 3 ;; Copyright (C) 1999, 2000, 2005 Free Software Foundation 3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, 4 ;; 2005 Free Software Foundation, Inc. 4 5 5 6 ;; Author: John Wiegley <johnw@gnu.org> … … 19 20 ;; You should have received a copy of the GNU General Public License 20 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the 21 ;; Free Software Foundation, Inc., 5 9 Temple Place - Suite 330,22 ;; Boston, MA 0211 1-1307, USA.22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 ;; Boston, MA 02110-1301, USA. 23 24 24 25 (provide 'em-ls) … … 65 66 66 67 (defcustom eshell-ls-dired-initial-args nil 67 "*If non-nil, args is included before any call to `ls' in dired.68 "*If non-nil, args is included before any call to `ls' in Dired. 68 69 This is useful for enabling human-readable format (-h), for example." 69 70 :type '(repeat :tag "Arguments" string) … … 71 72 72 73 (defcustom eshell-ls-use-in-dired nil 73 "*If non-nil, use `eshell-ls' to read directories in dired."74 "*If non-nil, use `eshell-ls' to read directories in Dired." 74 75 :set (lambda (symbol value) 75 76 (if value … … 159 160 '((((class color) (background light)) (:foreground "Red" :weight bold)) 160 161 (((class color) (background dark)) (:foreground "Red" :weight bold))) 161 "*The face used for highlighting non-exist ant file names."162 "*The face used for highlighting non-existent file names." 162 163 :group 'eshell-ls) 163 164 ;; backward-compatibility alias … … 864 865 865 866 (defun eshell-ls-decorated-name (file) 866 "Return FILE, possibly decorated. 867 Use TRUENAME for predicate tests, if passed." 867 "Return FILE, possibly decorated." 868 868 (if eshell-ls-use-colors 869 869 (let ((face
