diff options
author | Kaushal Modi <kaushal.modi@gmail.com> | 2017-09-29 12:38:56 -0400 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2017-09-30 16:01:54 +0200 |
commit | 5b45e7e1c337ddcc357b91755500d3771459be94 (patch) | |
tree | d25aea98b5a9d48a44300a305f68e8e7a869bc88 /lisp/vc/vc-hooks.el | |
parent | f17289459527da254d02e516e944c89d3c505377 (diff) | |
download | emacs-5b45e7e1c337ddcc357b91755500d3771459be94.tar.gz emacs-5b45e7e1c337ddcc357b91755500d3771459be94.tar.bz2 emacs-5b45e7e1c337ddcc357b91755500d3771459be94.zip |
Bind vc-region-history
* lisp/vc/vc-hooks.el (vc-prefix-map):
Bind `vc-region-history' to 'C-x v h', which was earlier bound to
`vc-insert-headers' (Bug#27644).
* doc/emacs/maintaining.texi (VC Change Log): Mention the new binding.
* doc/emacs/vc1-xtra.texi (Version Headers): Remove the association of
'C-x v h' with `vc-insert-headers'.
(http://lists.gnu.org/archive/html/emacs-devel/2017-09/msg00957.html)
Diffstat (limited to 'lisp/vc/vc-hooks.el')
-rw-r--r-- | lisp/vc/vc-hooks.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 4c94280faf2..99c8211ad5f 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -882,7 +882,7 @@ In the latter case, VC mode is deactivated for this buffer." (define-key map "d" 'vc-dir) (define-key map "g" 'vc-annotate) (define-key map "G" 'vc-ignore) - (define-key map "h" 'vc-insert-headers) + (define-key map "h" 'vc-region-history) (define-key map "i" 'vc-register) (define-key map "l" 'vc-print-log) (define-key map "L" 'vc-print-root-log) |