# HG changeset patch # User Richard M. Stallman # Date 804199548 0 # Node ID 598490dfbed5031a4720b9d78751eb6be830ed5a # Parent e2d27fbff9354cb0bd9813797ccb44eddb725020 (view-file-other-window): Re-add missing argument to switch-to-buffer-other-window. (view-mode-map): Leave C-c alone! (view-mode): Doc fix. diff -r e2d27fbff935 -r 598490dfbed5 lisp/view.el --- a/lisp/view.el Mon Jun 26 20:28:33 1995 +0000 +++ b/lisp/view.el Mon Jun 26 20:45:48 1995 +0000 @@ -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 @@ (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 @@ (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-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'.