Mercurial > emacs
changeset 68267:45d760802689
(dired-move-to-filename-regexp): Define as alias.
(dired-no-confirm): Use defcustom.
(dired-subdir-alist-pre-R): Put defvar at top level.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 19 Jan 2006 17:50:15 +0000 |
parents | 0d67eef96242 |
children | 627ba9ac2b0f |
files | lisp/dired.el |
diffstat | 1 files changed, 15 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dired.el Thu Jan 19 17:49:13 2006 +0000 +++ b/lisp/dired.el Thu Jan 19 17:50:15 2006 +0000 @@ -286,6 +286,9 @@ This is an alist of the form (SUBDIR . SWITCHES).") (make-variable-buffer-local 'dired-switches-alist) +(defvaralias 'dired-move-to-filename-regexp + 'directory-listing-before-filename-regexp) + (defvar dired-subdir-regexp "^. \\([^\n\r]+\\)\\(:\\)[\n\r]" "Regexp matching a maybe hidden subdirectory line in `ls -lR' output. Subexpression 1 is the subdirectory proper, no trailing colon. @@ -2514,11 +2517,18 @@ (set-window-start w2 1) ))) -(defvar dired-no-confirm nil +(defcustom dired-no-confirm nil "A list of symbols for commands Dired should not confirm. Command symbols are `byte-compile', `chgrp', `chmod', `chown', `compress', `copy', `delete', `hardlink', `load', `move', `print', `shell', `symlink', -`touch' and `uncompress'.") +`touch' and `uncompress'." + :group 'dired + :type (set (const byte-compile) (const chgrp) + (const chmod) (const chown) (const compress) + (const copy) (const delete) (const hardlink) + (const load) (const move) (const print) + (const shell) (const symlink) (const touch) + (const uncompress))) (defun dired-mark-pop-up (bufname op-symbol files function &rest args) "Return FUNCTION's result on ARGS after showing which files are marked. @@ -3091,9 +3101,9 @@ (if (eq major-mode 'dired-mode) (dired-sort-set-modeline)) (or no-revert (revert-buffer))) -(make-variable-buffer-local - (defvar dired-subdir-alist-pre-R nil - "Value of `dired-subdir-alist' before -R switch added.")) +(defvar dired-subdir-alist-pre-R nil + "Value of `dired-subdir-alist' before -R switch added.") +(make-variable-buffer-local dired-subdir-alist-pre-R)) (defun dired-sort-R-check (switches) "Additional processing of -R in ls option string SWITCHES.