Bind = to diff command in vc-annotate mode (Bug#8671)
authorChong Yidong <cyd@stupidchicken.com>
Sun, 15 May 2011 13:47:56 +0000 (09:47 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 15 May 2011 13:47:56 +0000 (09:47 -0400)
* lisp/vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
vc-annotate-show-diff-revision-at-line.

lisp/ChangeLog
lisp/vc/vc-annotate.el

index 4fd54d5..631a1be 100644 (file)
@@ -1,3 +1,8 @@
+2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
+
+       * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
+       vc-annotate-show-diff-revision-at-line (Bug#8671).
+
 2011-05-14  Glenn Morris  <rgm@gnu.org>
 
        * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
index abd3806..b6ecc4c 100644 (file)
@@ -120,6 +120,7 @@ List of factors, used to expand/compress the time scale.  See `vc-annotate'."
   (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)