diff options
| author | Richard M. Stallman <rms@gnu.org> | 1992-08-03 02:02:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1992-08-03 02:02:37 +0000 |
| commit | 1586b965b927d9111abb209d04568da330867dfa (patch) | |
| tree | 8f7668ac589d1cc601df12279cc089277836882a /lisp/view.el | |
| parent | df01170b2817a8131751a2c549eca43dc43d4210 (diff) | |
| download | emacs-1586b965b927d9111abb209d04568da330867dfa.tar.gz | |
*** empty log message ***
Diffstat (limited to 'lisp/view.el')
| -rw-r--r-- | lisp/view.el | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lisp/view.el b/lisp/view.el index 0cfc52676f4..50dbc77d815 100644 --- a/lisp/view.el +++ b/lisp/view.el @@ -287,7 +287,7 @@ If you viewed a file that was not present in Emacs, its buffer is killed." (eq (key-binding "\C-c") 'view-exit)) "Type C-h for help, ? for commands, C-c to quit" (substitute-command-keys - "Type \\[Helper-help] for help, \\[Helper-describe-bindings] for commands, \\[exit-recursive-edit] to quit.")))) + "Type \\[Helper-help] for help, \\[Helper-describe-bindings] for commands, \\[view-exit] to quit.")))) (defun View-undefined () (interactive) @@ -330,7 +330,7 @@ No arg means whole window full, or number of lines set by \\[View-scroll-lines-f Arg is number of lines to scroll." (interactive "P") (if (pos-visible-in-window-p (point-max)) - (exit-recursive-edit)) + (view-exit)) (setq lines (if lines (prefix-numeric-value lines) (view-scroll-size))) @@ -344,7 +344,7 @@ Arg is number of lines to scroll." (goto-char (point-max)) (recenter -1) (message (substitute-command-keys - "End. Type \\[exit-recursive-edit] to quit viewing.")))) + "End. Type \\[view-exit] to quit viewing.")))) (move-to-window-line -1) (beginning-of-line)) @@ -435,12 +435,6 @@ invocations return to earlier marks." (sit-for 4)))) -;;;###autoload -(define-key ctl-x-map "v" 'view-file) - -;;;###autoload -(define-key ctl-x-4-map "v" 'view-file-other-window) - (provide 'view) ;;; view.el ends here |
