diff options
| author | Dan Nicolaescu | 2008-05-01 06:33:24 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-05-01 06:33:24 +0000 |
| commit | 97c66ed8cd26da701c68eeae5d1c20481453cbc0 (patch) | |
| tree | 212a76331a7d54bd2a5e2cf0e0079bddfe21aa7a | |
| parent | 59f13c2a44eaa4ad3fc373b1214b7fb851f98eff (diff) | |
| download | emacs-97c66ed8cd26da701c68eeae5d1c20481453cbc0.tar.gz emacs-97c66ed8cd26da701c68eeae5d1c20481453cbc0.zip | |
(vc-dir-mode-map): Don't bind "r".
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5c725b9eef2..4675f3ff710 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-05-01 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * vc.el (vc-dir-mode-map): Don't bind "r". | ||
| 4 | |||
| 1 | 2008-05-01 John Paul Wallington <jpw@pobox.com> | 5 | 2008-05-01 John Paul Wallington <jpw@pobox.com> |
| 2 | 6 | ||
| 3 | * ibuffer.el (ibuffer-last-sorting-mode): New variable. | 7 | * ibuffer.el (ibuffer-last-sorting-mode): New variable. |
diff --git a/lisp/vc.el b/lisp/vc.el index d6536e8a3ee..f13f4bd9d00 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -672,6 +672,9 @@ | |||
| 672 | ;; - vc-cvs-delete-file should not do a "cvs commit" immediately after | 672 | ;; - vc-cvs-delete-file should not do a "cvs commit" immediately after |
| 673 | ;; removing the file. | 673 | ;; removing the file. |
| 674 | ;; | 674 | ;; |
| 675 | ;; - vc-delete-file should check if the file contains non-checked in | ||
| 676 | ;; changes and warn about losing them. | ||
| 677 | ;; | ||
| 675 | ;; - vc-create-snapshot and vc-retrieve-snapshot should update the | 678 | ;; - vc-create-snapshot and vc-retrieve-snapshot should update the |
| 676 | ;; buffers that might be visiting the affected files. | 679 | ;; buffers that might be visiting the affected files. |
| 677 | 680 | ||
| @@ -2985,7 +2988,6 @@ specific headers." | |||
| 2985 | (define-key map "x" 'vc-dir-hide-up-to-date) | 2988 | (define-key map "x" 'vc-dir-hide-up-to-date) |
| 2986 | (define-key map "q" 'quit-window) | 2989 | (define-key map "q" 'quit-window) |
| 2987 | (define-key map "g" 'vc-dir-refresh) | 2990 | (define-key map "g" 'vc-dir-refresh) |
| 2988 | (define-key map "r" 'vc-dir-delete-file) ; like in PCL-CVS | ||
| 2989 | (define-key map "\C-c\C-c" 'vc-dir-kill-dir-status-process) | 2991 | (define-key map "\C-c\C-c" 'vc-dir-kill-dir-status-process) |
| 2990 | ;; Does not work unless mouse sets point. Functions like vc-dir-find-file | 2992 | ;; Does not work unless mouse sets point. Functions like vc-dir-find-file |
| 2991 | ;; need to find the file from the mouse position, not `point'. | 2993 | ;; need to find the file from the mouse position, not `point'. |