diff options
| author | Luc Teirlinck | 2006-01-19 19:29:20 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-01-19 19:29:20 +0000 |
| commit | 7546199742adf07dce9af5822de83a2d489e5990 (patch) | |
| tree | 385d21b9121dd833fca90fd741b7806570bb447f | |
| parent | d2eed686a9d535b707d794e72768eb944cca968a (diff) | |
| download | emacs-7546199742adf07dce9af5822de83a2d489e5990.tar.gz emacs-7546199742adf07dce9af5822de83a2d489e5990.zip | |
(dired-no-confirm): Add quote.
(dired-subdir-alist-pre-R): Add quote in `make-variable-buffer-local'
form and remove unbalanced parenthesis.
| -rw-r--r-- | lisp/dired.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 1679c6ca3c6..fe8f6996b28 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -2523,12 +2523,12 @@ Command symbols are `byte-compile', `chgrp', `chmod', `chown', `compress', | |||
| 2523 | `copy', `delete', `hardlink', `load', `move', `print', `shell', `symlink', | 2523 | `copy', `delete', `hardlink', `load', `move', `print', `shell', `symlink', |
| 2524 | `touch' and `uncompress'." | 2524 | `touch' and `uncompress'." |
| 2525 | :group 'dired | 2525 | :group 'dired |
| 2526 | :type (set (const byte-compile) (const chgrp) | 2526 | :type '(set (const byte-compile) (const chgrp) |
| 2527 | (const chmod) (const chown) (const compress) | 2527 | (const chmod) (const chown) (const compress) |
| 2528 | (const copy) (const delete) (const hardlink) | 2528 | (const copy) (const delete) (const hardlink) |
| 2529 | (const load) (const move) (const print) | 2529 | (const load) (const move) (const print) |
| 2530 | (const shell) (const symlink) (const touch) | 2530 | (const shell) (const symlink) (const touch) |
| 2531 | (const uncompress))) | 2531 | (const uncompress))) |
| 2532 | 2532 | ||
| 2533 | (defun dired-mark-pop-up (bufname op-symbol files function &rest args) | 2533 | (defun dired-mark-pop-up (bufname op-symbol files function &rest args) |
| 2534 | "Return FUNCTION's result on ARGS after showing which files are marked. | 2534 | "Return FUNCTION's result on ARGS after showing which files are marked. |
| @@ -3103,7 +3103,7 @@ With optional second arg NO-REVERT, don't refresh the listing afterwards." | |||
| 3103 | 3103 | ||
| 3104 | (defvar dired-subdir-alist-pre-R nil | 3104 | (defvar dired-subdir-alist-pre-R nil |
| 3105 | "Value of `dired-subdir-alist' before -R switch added.") | 3105 | "Value of `dired-subdir-alist' before -R switch added.") |
| 3106 | (make-variable-buffer-local dired-subdir-alist-pre-R)) | 3106 | (make-variable-buffer-local 'dired-subdir-alist-pre-R) |
| 3107 | 3107 | ||
| 3108 | (defun dired-sort-R-check (switches) | 3108 | (defun dired-sort-R-check (switches) |
| 3109 | "Additional processing of -R in ls option string SWITCHES. | 3109 | "Additional processing of -R in ls option string SWITCHES. |