mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
lisp/vc/*.el: Use lexical-bindings in all the files
Also remove some redundant `:group` arguments. * lisp/vc/vc.el (vc-ignore): Autoload. * lisp/vc/pcvs-util.el (cvs-every, cvs-union, cvs-map): Delete functions. * lisp/vc/cvs-status.el: Require `cl-lib` at runtime. (cvs-tree-tags-insert): Use `cl-mapcar` and `cl-every` instead. * lisp/vc/pcvs.el: Require `cl-lib` at runtime. (cvs-do-removal): Use `cl-every` instead. * lisp/vc/ediff-init.el: Require `ediff-util` (for `ediff-cleanup-mess` and `ediff-default-suspend-function`). * lisp/vc/pcvs-info.el (cvs-fileinfo<): Remove unused vars `subtypea` and `subtypeb`. * lisp/vc/vc-git.el: * lisp/vc/vc-bzr.el: Require `vc-dispatcher` at runtime for `vc-do-async-command`.
This commit is contained in:
parent
2987376bc3
commit
99340ad17a
35 changed files with 547 additions and 687 deletions
|
|
@ -164,18 +164,18 @@ List of factors, used to expand/compress the time scale. See `vc-annotate'."
|
|||
|
||||
(defvar vc-annotate-mode-map
|
||||
(let ((m (make-sparse-keymap)))
|
||||
(define-key m "a" 'vc-annotate-revision-previous-to-line)
|
||||
(define-key m "d" 'vc-annotate-show-diff-revision-at-line)
|
||||
(define-key m "=" 'vc-annotate-show-diff-revision-at-line)
|
||||
(define-key m "D" 'vc-annotate-show-changeset-diff-revision-at-line)
|
||||
(define-key m "f" 'vc-annotate-find-revision-at-line)
|
||||
(define-key m "j" 'vc-annotate-revision-at-line)
|
||||
(define-key m "l" 'vc-annotate-show-log-revision-at-line)
|
||||
(define-key m "n" 'vc-annotate-next-revision)
|
||||
(define-key m "p" 'vc-annotate-prev-revision)
|
||||
(define-key m "w" 'vc-annotate-working-revision)
|
||||
(define-key m "v" 'vc-annotate-toggle-annotation-visibility)
|
||||
(define-key m "\C-m" 'vc-annotate-goto-line)
|
||||
(define-key m "a" #'vc-annotate-revision-previous-to-line)
|
||||
(define-key m "d" #'vc-annotate-show-diff-revision-at-line)
|
||||
(define-key m "=" #'vc-annotate-show-diff-revision-at-line)
|
||||
(define-key m "D" #'vc-annotate-show-changeset-diff-revision-at-line)
|
||||
(define-key m "f" #'vc-annotate-find-revision-at-line)
|
||||
(define-key m "j" #'vc-annotate-revision-at-line)
|
||||
(define-key m "l" #'vc-annotate-show-log-revision-at-line)
|
||||
(define-key m "n" #'vc-annotate-next-revision)
|
||||
(define-key m "p" #'vc-annotate-prev-revision)
|
||||
(define-key m "w" #'vc-annotate-working-revision)
|
||||
(define-key m "v" #'vc-annotate-toggle-annotation-visibility)
|
||||
(define-key m "\C-m" #'vc-annotate-goto-line)
|
||||
m)
|
||||
"Local keymap used for VC-Annotate mode.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue