]> git.eshelyaron.com Git - emacs.git/commitdiff
(view-file-other-window): Re-add missing argument to
authorRichard M. Stallman <rms@gnu.org>
Mon, 26 Jun 1995 20:45:48 +0000 (20:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 26 Jun 1995 20:45:48 +0000 (20:45 +0000)
switch-to-buffer-other-window.
(view-mode-map): Leave C-c alone!
(view-mode): Doc fix.

lisp/view.el

index 5eaff500172d719c598d3476d5adbe17f7b78976..2f9eb44e68a3c01e3d9089fa7d20eca81ad087fc 100644 (file)
@@ -33,7 +33,7 @@
     nil
   (setq view-mode-map (make-keymap))
   (fillarray (nth 1 view-mode-map) 'View-undefined)
-  (define-key view-mode-map "\C-c" 'view-exit)
+  (define-key view-mode-map "\C-c" (lookup-key global-map "\C-c"))
   (define-key view-mode-map "q" 'view-exit)
   (define-key view-mode-map "-" 'negative-argument)
   (define-key view-mode-map "0" 'digit-argument)
@@ -110,6 +110,8 @@ This command runs the normal hook `view-mode-hook'."
   (let ((old-buf (current-buffer))
        (had-a-buf (get-file-buffer file-name))
        (buf-to-view (find-file-noselect file-name)))
+    ;; This used to pass t as second argument,
+    ;; but then the buffer did not show up in the Buffers menu.
     (switch-to-buffer buf-to-view had-a-buf)
     (view-mode old-buf
               (and (not had-a-buf) (not (buffer-modified-p buf-to-view))
@@ -130,9 +132,7 @@ This command runs the normal hook `view-mode-hook'."
   (let ((old-arrangement (current-window-configuration))
        (had-a-buf (get-file-buffer file-name))
        (buf-to-view (find-file-noselect file-name)))
-    ;; This used to pass t as second argument,
-    ;; but then the buffer did not show up in the Buffers menu.
-    (switch-to-buffer-other-window)
+    (switch-to-buffer-other-window buf-to-view)
     (view-mode old-arrangement
               (and (not had-a-buf) (not (buffer-modified-p buf-to-view))
                    'kill-buffer))))
@@ -204,7 +204,7 @@ C-r or r    do reverse incremental search.
 C-n            moves down lines vertically.
 C-p            moves upward lines vertically.
 C-l            recenters the screen.
-q or C-c       exit view-mode and return to previous buffer.
+q              exit view-mode and return to previous buffer.
 
 Entry to this mode runs the normal hook `view-mode-hook'.