]> git.eshelyaron.com Git - emacs.git/commitdiff
(doc-view-mode-map): Bind doc-view-goto-page to the keys
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 31 Oct 2007 20:40:30 +0000 (20:40 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 31 Oct 2007 20:40:30 +0000 (20:40 +0000)
used normally for goto-line.  Change `g' to revert the buffer.
Add redundant `r' binding for buffer-revert.

lisp/ChangeLog
lisp/doc-view.el

index 9c6d71201ec1655190ea26eb54ba75b2ba0386ab..22175da0b8780a74542a55f4a9ab1d4037e185ad 100644 (file)
@@ -1,5 +1,9 @@
 2007-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * doc-view.el (doc-view-mode-map): Bind doc-view-goto-page to the keys
+       used normally for goto-line.  Change `g' to revert the buffer.
+       Add redundant `r' binding for buffer-revert.
+
        * mail/mailabbrev.el (mail-abbrevs-mode): Use define-minor-mode.
        (mail-abbrevs-setup): Use abbrev-expand-functions.
        (build-mail-abbrevs): Use with-temp-buffer.
index db5dd931c50c1bd9f05d3152caaacb5771f5018a..d43eb97cbcc2c9a369b924acaad85d1a9affc6bf 100644 (file)
@@ -226,7 +226,7 @@ has finished."
     (define-key map (kbd "DEL")       'doc-view-scroll-down-or-previous-page)
     (define-key map (kbd "M-<")       'doc-view-first-page)
     (define-key map (kbd "M->")       'doc-view-last-page)
-    (define-key map (kbd "g")         'doc-view-goto-page)
+    (define-key map [remap goto-line] 'doc-view-goto-page)
     ;; Killing/burying the buffer (and the process)
     (define-key map (kbd "q")         'bury-buffer)
     (define-key map (kbd "k")         'doc-view-kill-proc-and-buffer)
@@ -250,7 +250,8 @@ has finished."
     ;; Toggle between text and image display or editing
     (define-key map (kbd "C-c C-c")   'doc-view-toggle-display)
     ;; Reconvert the current document
-    (define-key map (kbd "g")         'doc-view-reconvert-doc)
+    (define-key map (kbd "g")         'revert-buffer)
+    (define-key map (kbd "r")         'revert-buffer)
     map)
   "Keymap used by `doc-view-mode' when displaying a doc as a set of images.")