Changeset 4200 for trunk/lisp/dired-x.el
- Timestamp:
- 04/07/07 15:49:28 (2 years ago)
- Files:
-
- trunk/lisp/dired-x.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/dired-x.el
r4190 r4200 46 46 ;; (function (lambda () 47 47 ;; (load "dired-x") 48 ;; ;; Set globalvariables here. For example:48 ;; ;; Set variables here. For example: 49 49 ;; ;; (setq dired-guess-shell-gnutar "gtar") 50 ;; )))51 ;; (add-hook 'dired-mode-hook52 ;; (function (lambda ()53 ;; ;; Set buffer-local variables here. For example:54 50 ;; ;; (dired-omit-mode 1) 55 51 ;; ))) … … 1131 1127 :type '(alist :key-type regexp :value-type (repeat sexp))) 1132 1128 1133 (defcustom dired-guess-shell-case-fold-search t1134 "If non-nil, `dired-guess-shell-alist-default' and1135 `dired-guess-shell-alist-user' are matched case-insensitively."1136 :group 'dired-x1137 :type 'boolean)1138 1139 1129 (defun dired-guess-default (files) 1140 1130 "Guess a shell commands for FILES. Return command or list of commands. 1141 1131 See `dired-guess-shell-alist-user'." 1142 1132 1143 (let* ((case-fold-search dired-guess-shell-case-fold-search)1133 (let* ((case-fold-search t) 1144 1134 ;; Prepend the user's alist to the default alist. 1145 1135 (alist (append dired-guess-shell-alist-user
