diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-08 00:20:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-08 00:20:56 +0000 |
commit | da8a843818c7d5a318ef4c3d8dd9e51241e54fc5 (patch) | |
tree | c5bf22c1add1535c57d79582b6c53d0f28bc9150 /lisp/dired.el | |
parent | 31cd9611fe3385c56aeab94e6e34feca616b2f4c (diff) | |
download | emacs-da8a843818c7d5a318ef4c3d8dd9e51241e54fc5.tar.gz |
(dired-quit): Function deleted.
(dired-mode-map): Use quit-window for q.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 34b1d50ad90..583815dd44d 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -891,7 +891,7 @@ If DIRNAME is already in a dired buffer, that buffer is used without refresh." (define-key map "o" 'dired-find-file-other-window) (define-key map "\C-o" 'dired-display-file) (define-key map "p" 'dired-previous-line) - (define-key map "q" 'dired-quit) + (define-key map "q" 'quit-window) (define-key map "s" 'dired-sort-toggle-or-edit) (define-key map "t" 'dired-do-toggle) (define-key map "u" 'dired-unmark) @@ -1154,11 +1154,6 @@ Keybindings: ;; Idiosyncratic dired commands that don't deal with marks. -(defun dired-quit () - "Bury the current dired buffer." - (interactive) - (bury-buffer)) - (defun dired-summary () "Summarize basic Dired commands and show recent Dired errors." (interactive) |