(view-buffer): Allow running in `special' modes if we're visiting a file.
[bpt/emacs.git] / lisp / view.el
CommitLineData
e8af40ee 1;;; view.el --- peruse file or buffer without editing
d501f516 2
95df8112
GM
3;; Copyright (C) 1985, 1989, 1994-1995, 1997, 2000-2011
4;; Free Software Foundation, Inc.
eea8d4ef 5
e5167999 6;; Author: K. Shane Hartman
1036798c 7;; Maintainer: Inge Frick <inge@nada.kth.se>
284b3043 8;; Keywords: files
e6211d55
RS
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
e6211d55 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
e6211d55
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
e6211d55 24
c91c4e6d
ER
25;;; Commentary:
26
bab0c3c1 27;; This package provides the `view' minor mode documented in the Emacs
c91c4e6d 28;; user's manual.
ab7782fc 29;; View mode entry and exit is done through the functions view-mode-enter
66d3a2b5 30;; and view-mode-exit. Use these functions to enter or exit view-mode from
ab7782fc 31;; emacs lisp programs.
66d3a2b5 32;; We use both view- and View- as prefix for symbols. View- is used as
cae55197 33;; prefix for commands that have a key binding. view- is used for commands
66d3a2b5 34;; without key binding. The purpose of this is to make it easier for a
ab7782fc
RS
35;; user to use command name completion.
36
37;;; Suggested key bindings:
38;;
39;; (define-key ctl-x-4-map "v" 'view-file-other-window) ; ^x4v
40;; (define-key ctl-x-5-map "v" 'view-file-other-frame) ; ^x5v
41;;
42;; You could also bind view-file, view-buffer, view-buffer-other-window and
43;; view-buffer-other-frame to keys.
0d63ba8c 44\f
e5167999 45;;; Code:
e6211d55 46
cae55197
KH
47(defgroup view nil
48 "Peruse file or buffer without editing."
49 :link '(function-link view-mode)
50 :link '(custom-manual "(emacs)Misc File Ops")
eba5b4dd 51 :group 'wp)
cae55197 52
cae55197 53(defcustom view-highlight-face 'highlight
9201cc28 54 "The face used for highlighting the match found by View mode search."
cae55197
KH
55 :type 'face
56 :group 'view)
82380f84 57
cae55197 58(defcustom view-scroll-auto-exit nil
9201cc28 59 "Non-nil means scrolling past the end of buffer exits View mode.
39d9e44f 60A value of nil means attempting to scroll past the end of the buffer,
cae55197
KH
61only rings the bell and gives a message on how to leave."
62 :type 'boolean
63 :group 'view)
ab7782fc 64
cae55197 65(defcustom view-try-extend-at-buffer-end nil
9201cc28 66 "Non-nil means try to load more of file when reaching end of buffer.
66d3a2b5
RS
67This variable is mainly intended to be temporarily set to non-nil by
68the F command in view-mode, but you can set it to t if you want the action
cae55197
KH
69for all scroll commands in view mode."
70 :type 'boolean
71 :group 'view)
ab7782fc 72
78ddc123
MR
73;;;###autoload
74(defcustom view-remove-frame-by-deleting t
9201cc28 75 "Determine how View mode removes a frame no longer needed.
cae55197
KH
76If nil, make an icon of the frame. If non-nil, delete the frame."
77 :type 'boolean
78ddc123 78 :group 'view
78ddc123 79 :version "23.1")
ab7782fc 80
cae55197 81(defcustom view-exits-all-viewing-windows nil
9201cc28 82 "Non-nil means restore all windows used to view buffer.
357f93d2
MR
83Commands that restore windows when finished viewing a buffer,
84apply to all windows that display the buffer and have restore
85information. If `view-exits-all-viewing-windows' is nil, only
86the selected window is considered for restoring."
cae55197
KH
87 :type 'boolean
88 :group 'view)
ab7782fc 89
1c0484e2 90(defcustom view-inhibit-help-message nil
9201cc28 91 "Non-nil inhibits the help message shown upon entering View mode."
1c0484e2
RF
92 :type 'boolean
93 :group 'view
94 :version "22.1")
95
0093dc5a 96;;;###autoload
cae55197
KH
97(defvar view-mode nil
98 "Non-nil if View mode is enabled.
99Don't change this variable directly, you must change it by one of the
100functions that enable or disable view mode.")
0093dc5a 101;;;###autoload
bab0c3c1
KH
102(make-variable-buffer-local 'view-mode)
103
cae55197
KH
104(defcustom view-mode-hook nil
105 "Normal hook run when starting to view a buffer or file."
106 :type 'hook
107 :group 'view)
0d63ba8c 108\f
c88daaef
RS
109(defvar view-old-buffer-read-only nil)
110(make-variable-buffer-local 'view-old-buffer-read-only)
ab7782fc 111
c88daaef
RS
112(defvar view-old-Helper-return-blurb)
113(make-variable-buffer-local 'view-old-Helper-return-blurb)
114
ab7782fc
RS
115(defvar view-page-size nil
116 "Default number of lines to scroll by View page commands.
5bf70f47 117If nil that means use the window size.")
ab7782fc 118(make-variable-buffer-local 'view-page-size)
c88daaef 119
ab7782fc
RS
120(defvar view-half-page-size nil
121 "Default number of lines to scroll by View half page commands.
5bf70f47 122If nil that means use half the window size.")
ab7782fc 123(make-variable-buffer-local 'view-half-page-size)
c88daaef 124
ab7782fc
RS
125(defvar view-last-regexp nil)
126(make-variable-buffer-local 'view-last-regexp) ; Global is better???
127
128(defvar view-return-to-alist nil
66d3a2b5
RS
129 "What to do with used windows and where to go when finished viewing buffer.
130This is local in each buffer being viewed.
d9855810
RS
131It is added to by `view-mode-enter' when starting to view a buffer and
132subtracted from by `view-mode-exit' when finished viewing the buffer.
66d3a2b5
RS
133
134See RETURN-TO-ALIST argument of function `view-mode-exit' for the format of
e51f616f 135`view-return-to-alist'.")
357f93d2
MR
136(make-obsolete-variable
137 'view-return-to-alist "this variable is no more used." "24.1")
ab7782fc 138(make-variable-buffer-local 'view-return-to-alist)
da932079 139(put 'view-return-to-alist 'permanent-local t)
ab7782fc
RS
140
141(defvar view-exit-action nil
78ddc123
MR
142 "If non-nil, a function with one argument (a buffer) called when finished viewing.
143Commands like \\[view-file] and \\[view-file-other-window] may
144set this to bury or kill the viewed buffer.
145Observe that the buffer viewed might not appear in any window at
146the time this function is called.")
c88daaef 147(make-variable-buffer-local 'view-exit-action)
c88daaef 148
1a552841
RS
149(defvar view-no-disable-on-exit nil
150 "If non-nil, View mode \"exit\" commands don't actually disable View mode.
151Instead, these commands just switch buffers or windows.
152This is set in certain buffers by specialized features such as help commands
153that use View mode automatically.")
154
4fe11426 155(defvar view-overlay nil
82380f84
RS
156 "Overlay used to display where a search operation found its match.
157This is local in each buffer, once it is used.")
4fe11426 158(make-variable-buffer-local 'view-overlay)
0d63ba8c 159\f
ab7782fc 160;; Define keymap inside defvar to make it easier to load changes.
cae55197 161;; Some redundant "less"-like key bindings below have been commented out.
ab7782fc
RS
162(defvar view-mode-map
163 (let ((map (make-sparse-keymap)))
164 (define-key map "C" 'View-kill-and-leave)
165 (define-key map "c" 'View-leave)
166 (define-key map "Q" 'View-quit-all)
167 (define-key map "E" 'View-exit-and-edit)
4e099504 168 ;; (define-key map "v" 'View-exit)
ab7782fc
RS
169 (define-key map "e" 'View-exit)
170 (define-key map "q" 'View-quit)
4e099504 171 ;; (define-key map "N" 'View-search-last-regexp-backward)
ab7782fc
RS
172 (define-key map "p" 'View-search-last-regexp-backward)
173 (define-key map "n" 'View-search-last-regexp-forward)
4e099504 174 ;; (define-key map "?" 'View-search-regexp-backward) ; Less does this.
ab7782fc
RS
175 (define-key map "\\" 'View-search-regexp-backward)
176 (define-key map "/" 'View-search-regexp-forward)
177 (define-key map "r" 'isearch-backward)
178 (define-key map "s" 'isearch-forward)
179 (define-key map "m" 'point-to-register)
180 (define-key map "'" 'register-to-point)
181 (define-key map "x" 'exchange-point-and-mark)
d1ed8492 182 (define-key map "@" 'View-back-to-mark)
ab7782fc
RS
183 (define-key map "." 'set-mark-command)
184 (define-key map "%" 'View-goto-percent)
4e099504 185 ;; (define-key map "G" 'View-goto-line-last)
ab7782fc
RS
186 (define-key map "g" 'View-goto-line)
187 (define-key map "=" 'what-line)
188 (define-key map "F" 'View-revert-buffer-scroll-page-forward)
4e099504 189 ;; (define-key map "k" 'View-scroll-line-backward)
ab7782fc 190 (define-key map "y" 'View-scroll-line-backward)
4e099504 191 ;; (define-key map "j" 'View-scroll-line-forward)
ab7782fc
RS
192 (define-key map "\n" 'View-scroll-line-forward)
193 (define-key map "\r" 'View-scroll-line-forward)
194 (define-key map "u" 'View-scroll-half-page-backward)
195 (define-key map "d" 'View-scroll-half-page-forward)
196 (define-key map "z" 'View-scroll-page-forward-set-page-size)
197 (define-key map "w" 'View-scroll-page-backward-set-page-size)
4e099504 198 ;; (define-key map "b" 'View-scroll-page-backward)
ab7782fc 199 (define-key map "\C-?" 'View-scroll-page-backward)
4e099504 200 ;; (define-key map "f" 'View-scroll-page-forward)
ab7782fc
RS
201 (define-key map " " 'View-scroll-page-forward)
202 (define-key map "o" 'View-scroll-to-buffer-end)
203 (define-key map ">" 'end-of-buffer)
204 (define-key map "<" 'beginning-of-buffer)
205 (define-key map "-" 'negative-argument)
206 (define-key map "9" 'digit-argument)
207 (define-key map "8" 'digit-argument)
208 (define-key map "7" 'digit-argument)
209 (define-key map "6" 'digit-argument)
210 (define-key map "5" 'digit-argument)
211 (define-key map "4" 'digit-argument)
212 (define-key map "3" 'digit-argument)
213 (define-key map "2" 'digit-argument)
214 (define-key map "1" 'digit-argument)
215 (define-key map "0" 'digit-argument)
216 (define-key map "H" 'describe-mode)
d1ed8492 217 (define-key map "?" 'describe-mode) ; Maybe do as less instead? See above.
ab7782fc
RS
218 (define-key map "h" 'describe-mode)
219 map))
0d63ba8c 220\f
ab7782fc 221;;; Commands that enter or exit view mode.
e6211d55 222
404967ca
EZ
223;; This is used when view mode is exited, to make sure we don't try to
224;; kill a buffer modified by the user. A buffer in view mode can
225;; become modified if the user types C-x C-q, edits the buffer, then
226;; types C-x C-q again to return to view mode.
5e4f40ee 227;;;###autoload
dd18f44f
EZ
228(defun kill-buffer-if-not-modified (buf)
229 "Like `kill-buffer', but does nothing if the buffer is modified."
ce173b30 230 (let ((buf (get-buffer buf)))
dd18f44f
EZ
231 (and buf (not (buffer-modified-p buf))
232 (kill-buffer buf))))
233
7229064d 234;;;###autoload
d1ed8492 235(defun view-file (file)
e6211d55 236 "View FILE in View mode, returning to previous buffer when done.
78ddc123
MR
237Emacs commands editing the buffer contents are not available; instead, a
238special set of commands (mostly letters and punctuation) are defined for
239moving around in the buffer.
e6211d55 240Space scrolls forward, Delete scrolls backward.
78ddc123 241For a list of all View commands, type H or h while viewing.
e6211d55 242
bd0d2c58 243This command runs the normal hook `view-mode-hook'."
e6211d55 244 (interactive "fView file: ")
981b7b0c 245 (unless (file-exists-p file) (error "%s does not exist" file))
90bb2ff4
RS
246 (let ((had-a-buf (get-file-buffer file))
247 (buffer (find-file-noselect file)))
fd5c9dfa 248 (view-buffer buffer (and (not had-a-buf) 'kill-buffer-if-not-modified))))
e6211d55 249
b82fef5c 250;;;###autoload
d1ed8492 251(defun view-file-other-window (file)
ab7782fc 252 "View FILE in View mode in another window.
48d93beb
EZ
253When done, return that window to its previous buffer, and kill the
254buffer visiting FILE if unmodified and if it wasn't visited before.
255
ab7782fc 256Emacs commands editing the buffer contents are not available; instead,
b82fef5c
JB
257a special set of commands (mostly letters and punctuation)
258are defined for moving around in the buffer.
259Space scrolls forward, Delete scrolls backward.
78ddc123 260For a list of all View commands, type H or h while viewing.
b82fef5c 261
bd0d2c58 262This command runs the normal hook `view-mode-hook'."
ab7782fc 263 (interactive "fIn other window view file: ")
981b7b0c 264 (unless (file-exists-p file) (error "%s does not exist" file))
48d93beb
EZ
265 (let ((had-a-buf (get-file-buffer file))
266 (buf-to-view (find-file-noselect file)))
267 (view-buffer-other-window buf-to-view nil
268 (and (not had-a-buf)
dd18f44f 269 'kill-buffer-if-not-modified))))
b82fef5c 270
7229064d 271;;;###autoload
d1ed8492 272(defun view-file-other-frame (file)
ab7782fc 273 "View FILE in View mode in another frame.
48d93beb
EZ
274When done, kill the buffer visiting FILE if unmodified and if it wasn't
275visited before; also, maybe delete other frame and/or return to previous
276buffer.
277
ab7782fc 278Emacs commands editing the buffer contents are not available; instead,
e6211d55
RS
279a special set of commands (mostly letters and punctuation)
280are defined for moving around in the buffer.
281Space scrolls forward, Delete scrolls backward.
78ddc123 282For a list of all View commands, type H or h while viewing.
e6211d55 283
bd0d2c58 284This command runs the normal hook `view-mode-hook'."
ab7782fc 285 (interactive "fIn other frame view file: ")
981b7b0c 286 (unless (file-exists-p file) (error "%s does not exist" file))
48d93beb
EZ
287 (let ((had-a-buf (get-file-buffer file))
288 (buf-to-view (find-file-noselect file)))
289 (view-buffer-other-frame buf-to-view nil
290 (and (not had-a-buf)
dd18f44f 291 'kill-buffer-if-not-modified))))
ab7782fc
RS
292
293
294;;;###autoload
d1ed8492 295(defun view-buffer (buffer &optional exit-action)
ab7782fc 296 "View BUFFER in View mode, returning to previous buffer when done.
78ddc123
MR
297Emacs commands editing the buffer contents are not available; instead, a
298special set of commands (mostly letters and punctuation) are defined for
299moving around in the buffer.
ab7782fc 300Space scrolls forward, Delete scrolls backward.
78ddc123 301For a list of all View commands, type H or h while viewing.
ab7782fc
RS
302
303This command runs the normal hook `view-mode-hook'.
304
305Optional argument EXIT-ACTION is either nil or a function with buffer as
78ddc123 306argument. This function is called when finished viewing buffer. Use
5e613c02
MR
307this argument instead of explicitly setting `view-exit-action'.
308
309Do not set EXIT-ACTION to `kill-buffer' when BUFFER visits a
310file: Users may suspend viewing in order to modify the buffer.
311Exiting View mode will then discard the user's edits. Setting
312EXIT-ACTION to `kill-buffer-if-not-modified' avoids this."
e6211d55 313 (interactive "bView buffer: ")
1bfd59e5
LMI
314 (if (with-current-buffer buffer
315 (and (eq (get major-mode 'mode-class)
316 'special)
317 (null buffer-file-name)))
fd5c9dfa
JL
318 (progn
319 (switch-to-buffer buffer)
320 (message "Not using View mode because the major mode is special"))
357f93d2
MR
321 (pop-to-buffer-same-window buffer)
322 (view-mode-enter nil exit-action)))
e6211d55 323
b82fef5c 324;;;###autoload
d1ed8492 325(defun view-buffer-other-window (buffer &optional not-return exit-action)
bab0c3c1 326 "View BUFFER in View mode in another window.
357f93d2
MR
327Emacs commands editing the buffer contents are not available;
328instead, a special set of commands (mostly letters and
329punctuation) are defined for moving around in the buffer.
ab7782fc 330Space scrolls forward, Delete scrolls backward.
78ddc123 331For a list of all View commands, type H or h while viewing.
ab7782fc
RS
332
333This command runs the normal hook `view-mode-hook'.
334
357f93d2
MR
335Optional argument NOT-RETURN is ignored.
336
ab7782fc 337Optional argument EXIT-ACTION is either nil or a function with buffer as
78ddc123
MR
338argument. This function is called when finished viewing buffer. Use
339this argument instead of explicitly setting `view-exit-action'."
ab7782fc 340 (interactive "bIn other window view buffer:\nP")
357f93d2
MR
341 (pop-to-buffer-other-window buffer)
342 (view-mode-enter nil exit-action))
5c05f569 343
ab7782fc 344;;;###autoload
d1ed8492 345(defun view-buffer-other-frame (buffer &optional not-return exit-action)
ab7782fc 346 "View BUFFER in View mode in another frame.
357f93d2
MR
347Emacs commands editing the buffer contents are not available;
348instead, a special set of commands (mostly letters and
349punctuation) are defined for moving around in the buffer.
b82fef5c 350Space scrolls forward, Delete scrolls backward.
78ddc123 351For a list of all View commands, type H or h while viewing.
b82fef5c 352
ab7782fc
RS
353This command runs the normal hook `view-mode-hook'.
354
357f93d2
MR
355Optional argument NOT-RETURN is ignored.
356
ab7782fc 357Optional argument EXIT-ACTION is either nil or a function with buffer as
78ddc123
MR
358argument. This function is called when finished viewing buffer. Use
359this argument instead of explicitly setting `view-exit-action'."
ab7782fc 360 (interactive "bView buffer in other frame: \nP")
357f93d2
MR
361 (pop-to-buffer-other-frame buffer)
362 (view-mode-enter nil exit-action))
0d63ba8c 363\f
7229064d 364;;;###autoload
56eb0904 365(define-minor-mode view-mode
ab7782fc 366 ;; In the following documentation string we have to use some explicit key
e51f616f 367 ;; bindings instead of using the \\[] construction. The reason for this
ab7782fc
RS
368 ;; is that most commands have more than one key binding.
369 "Toggle View mode, a minor mode for viewing text but not editing it.
4837b516
GM
370With prefix argument ARG, turn View mode on if ARG is positive, otherwise
371turn it off.
ab7782fc
RS
372
373Emacs commands that do not change the buffer contents are available as usual.
e51f616f 374Kill commands insert text in kill buffers but do not delete. Other commands
ab7782fc
RS
375\(among them most letters and punctuation) beep and tell that the buffer is
376read-only.
377\\<view-mode-map>
378The following additional commands are provided. Most commands take prefix
379arguments. Page commands default to \"page size\" lines which is almost a whole
380window full, or number of lines set by \\[View-scroll-page-forward-set-page-size] or \\[View-scroll-page-backward-set-page-size]. Half page commands default to
381and set \"half page size\" lines which initially is half a window full. Search
382commands default to a repeat count of one.
383
384H, h, ? This message.
385Digits provide prefix arguments.
386\\[negative-argument] negative prefix argument.
387\\[beginning-of-buffer] move to the beginning of buffer.
388> move to the end of buffer.
389\\[View-scroll-to-buffer-end] scroll so that buffer end is at last line of window.
d1ed8492
GM
390SPC scroll forward \"page size\" lines.
391 With prefix scroll forward prefix lines.
392DEL scroll backward \"page size\" lines.
393 With prefix scroll backward prefix lines.
394\\[View-scroll-page-forward-set-page-size] like \\[View-scroll-page-forward] but with prefix sets \"page size\" to prefix.
395\\[View-scroll-page-backward-set-page-size] like \\[View-scroll-page-backward] but with prefix sets \"page size\" to prefix.
396\\[View-scroll-half-page-forward] scroll forward \"half page size\" lines. With prefix, sets
397 \"half page size\" to prefix lines and scrolls forward that much.
398\\[View-scroll-half-page-backward] scroll backward \"half page size\" lines. With prefix, sets
399 \"half page size\" to prefix lines and scrolls backward that much.
400RET, LFD scroll forward one line. With prefix scroll forward prefix line(s).
401y scroll backward one line. With prefix scroll backward prefix line(s).
ab7782fc
RS
402\\[View-revert-buffer-scroll-page-forward] revert-buffer if necessary and scroll forward.
403 Use this to view a changing file.
404\\[what-line] prints the current line number.
405\\[View-goto-percent] goes prefix argument (default 100) percent into buffer.
406\\[View-goto-line] goes to line given by prefix argument (default first line).
407. set the mark.
408x exchanges point and mark.
409\\[View-back-to-mark] return to mark and pops mark ring.
410 Mark ring is pushed at start of every successful search and when
e51f616f 411 jump to line occurs. The mark is set on jump to buffer start or end.
ab7782fc
RS
412\\[point-to-register] save current position in character register.
413' go to position saved in character register.
414s do forward incremental search.
415r do reverse incremental search.
416\\[View-search-regexp-forward] searches forward for regular expression, starting after current page.
417 ! and @ have a special meaning at the beginning of the regexp.
e51f616f 418 ! means search for a line with no match for regexp. @ means start
ab7782fc
RS
419 search at beginning (end for backward search) of buffer.
420\\ searches backward for regular expression, starting before current page.
421\\[View-search-last-regexp-forward] searches forward for last regular expression.
422p searches backward for last regular expression.
4790accb 423\\[View-quit] quit View mode, restoring this window and buffer to previous state.
ab7782fc 424 \\[View-quit] is the normal way to leave view mode.
e51f616f 425\\[View-exit] exit View mode but stay in current buffer. Use this if you started
ab7782fc 426 viewing a buffer (file) and find out you want to edit it.
4790accb
RS
427 This command restores the previous read-only status of the buffer.
428\\[View-exit-and-edit] exit View mode, and make the current buffer editable
429 even if it was not editable before entry to View mode.
430\\[View-quit-all] quit View mode, restoring all windows to previous state.
ab7782fc
RS
431\\[View-leave] quit View mode and maybe switch buffers, but don't kill this buffer.
432\\[View-kill-and-leave] quit View mode, kill current buffer and go back to other buffer.
433
38acf670 434The effect of \\[View-leave], \\[View-quit] and \\[View-kill-and-leave] depends on how view-mode was entered. If it was
2f33468c
EZ
435entered by view-file, view-file-other-window, view-file-other-frame, or
436\\[dired-view-file] \(\\[view-file], \\[view-file-other-window],
437\\[view-file-other-frame], or the Dired mode v command),
438then \\[View-quit] will try to kill the current buffer.
439If view-mode was entered from another buffer, by \\[view-buffer],
440\\[view-buffer-other-window], \\[view-buffer-other frame], \\[view-file],
441\\[view-file-other-window], or \\[view-file-other-frame],
38acf670 442then \\[View-leave], \\[View-quit] and \\[View-kill-and-leave] will return to that buffer.
ab7782fc
RS
443
444Entry to view-mode runs the normal hook `view-mode-hook'."
56eb0904
SM
445 :lighter " View" :keymap view-mode-map
446 (if view-mode (view-mode-enable) (view-mode-disable)))
0d63ba8c 447\f
e51f616f
RS
448(defun view-mode-enable ()
449 "Turn on View mode."
8b7037d9
RS
450 ;; Always leave view mode before changing major mode.
451 ;; This is to guarantee that the buffer-read-only variable is restored.
8b7037d9 452 (add-hook 'change-major-mode-hook 'view-mode-disable nil t)
e51f616f 453 (setq view-mode t
5bf70f47
RS
454 view-page-size nil
455 view-half-page-size nil
e51f616f 456 view-old-buffer-read-only buffer-read-only
5704140c
CY
457 buffer-read-only t)
458 (if (boundp 'Helper-return-blurb)
459 (setq view-old-Helper-return-blurb (and (boundp 'Helper-return-blurb)
460 Helper-return-blurb)
461 Helper-return-blurb
462 (format "continue viewing %s"
463 (if (buffer-file-name)
464 (file-name-nondirectory (buffer-file-name))
465 (buffer-name)))))
19b7f6c9 466 (force-mode-line-update)
e51f616f
RS
467 (run-hooks 'view-mode-hook))
468
469(defun view-mode-disable ()
470 "Turn off View mode."
8b7037d9 471 (remove-hook 'change-major-mode-hook 'view-mode-disable t)
e51f616f 472 (and view-overlay (delete-overlay view-overlay))
19b7f6c9 473 (force-mode-line-update)
b75c9917
RS
474 ;; Calling toggle-read-only while View mode is enabled
475 ;; sets view-read-only to t as a buffer-local variable
476 ;; after exiting View mode. That arranges that the next toggle-read-only
477 ;; will reenable View mode.
478 ;; Cancelling View mode in any other way should cancel that, too,
479 ;; so that View mode stays off if toggle-read-only is called.
480 (if (local-variable-p 'view-read-only)
481 (kill-local-variable 'view-read-only))
5704140c
CY
482 (setq view-mode nil)
483 (if (boundp 'Helper-return-blurb)
484 (setq Helper-return-blurb view-old-Helper-return-blurb))
bf551cf7
KH
485 (if buffer-read-only
486 (setq buffer-read-only view-old-buffer-read-only)))
ab7782fc
RS
487
488;;;###autoload
78ddc123
MR
489(defun view-return-to-alist-update (buffer &optional item)
490 "Update `view-return-to-alist' of buffer BUFFER.
491Remove from `view-return-to-alist' all entries referencing dead
492windows. Optional argument ITEM non-nil means add ITEM to
493`view-return-to-alist' after purging. For a decsription of items
494that can be added see the RETURN-TO-ALIST argument of the
495function `view-mode-exit'. If `view-return-to-alist' contains an
496entry for the selected window, purge that entry from
497`view-return-to-alist' before adding ITEM."
498 (with-current-buffer buffer
499 (when view-return-to-alist
500 (let* ((list view-return-to-alist)
501 entry entry-window last)
502 (while list
503 (setq entry (car list))
504 (setq entry-window (car entry))
505 (if (and (windowp entry-window)
506 (or (and item (eq entry-window (selected-window)))
507 (not (window-live-p entry-window))))
508 ;; Remove that entry.
509 (if last
510 (setcdr last (cdr list))
511 (setq view-return-to-alist
512 (cdr view-return-to-alist)))
513 ;; Leave entry alone.
514 (setq last entry))
515 (setq list (cdr list)))))
516 ;; Add ITEM.
517 (when item
518 (setq view-return-to-alist
519 (cons item view-return-to-alist)))))
357f93d2 520(make-obsolete 'view-return-to-alist-update "this function has no effect." "24.1")
78ddc123
MR
521
522;;;###autoload
357f93d2 523(defun view-mode-enter (&optional quit-restore exit-action)
78ddc123 524 "Enter View mode and set up exit from view mode depending on optional arguments.
357f93d2
MR
525Optional argument QUIT-RESTORE if non-nil must specify a valid
526entry for quitting and restoring any window showing the current
527buffer. This entry replaces any parameter installed by
528`display-buffer' and is used by `view-mode-exit'.
529
530Optional argument EXIT-ACTION, if non-nil, must specify a
78ddc123
MR
531function that takes a buffer as argument. This function will be
532called by `view-mode-exit'.
533
78ddc123 534For a list of all View commands, type H or h while viewing.
ab7782fc
RS
535
536This function runs the normal hook `view-mode-hook'."
357f93d2
MR
537 (when quit-restore
538 (dolist (window (get-buffer-window-list nil nil t))
539 (set-window-parameter window 'quit-restore quit-restore)))
540
78ddc123
MR
541 (when exit-action
542 (setq view-exit-action exit-action))
543
544 (unless view-mode
e51f616f 545 (view-mode-enable)
ab7782fc 546 (force-mode-line-update)
1c0484e2
RF
547 (unless view-inhibit-help-message
548 (message "%s"
549 (substitute-command-keys "\
550View mode: type \\[help-command] for help, \\[describe-mode] for commands, \\[View-quit] to quit.")))))
0d63ba8c 551\f
357f93d2
MR
552;; This is awful because it assumes that the selected window shows the
553;; current buffer when this is called.
554(defun view-mode-exit (&optional exit-only exit-action all-windows)
555 "Exit View mode in various ways.
556If all arguments are nil, remove the current buffer from the
557selected window using the `quit-restore' information associated
558with the selected window. If optional argument ALL-WINDOWS or
559`view-exits-all-viewing-windows' are non-nil, remove the current
560buffer from all windows showing it.
561
562Optional argument EXIT-ONLY non-nil means just exit `view-mode'
563\(unless `view-no-disable-on-exit' is non-nil) but do not change
564the associations of any windows with the current buffer.
565
566EXIT-ACTION, if non-nil, must specify a function that is called
567with the current buffer as argument and is called after disabling
568`view-mode' and removing any associations of windows with the
569current buffer. "
570 (when view-mode
571 (let ((buffer (window-buffer)))
78ddc123
MR
572 (unless view-no-disable-on-exit
573 (view-mode-disable))
357f93d2
MR
574
575 (unless exit-only
576 (cond
577 ((or all-windows view-exits-all-viewing-windows)
578 (dolist (window (get-buffer-window-list))
579 (quit-restore-window window)))
580 ((eq (window-buffer) (current-buffer))
581 (quit-restore-window)))
582
583 (when exit-action
584 (funcall exit-action buffer))
585 (force-mode-line-update)))))
0d63ba8c 586\f
ab7782fc
RS
587(defun View-exit ()
588 "Exit View mode but stay in current buffer."
e6211d55 589 (interactive)
357f93d2 590 (view-mode-exit t))
e6211d55 591
0093dc5a 592;;;###autoload
ab7782fc
RS
593(defun View-exit-and-edit ()
594 "Exit View mode and make the current buffer editable."
595 (interactive)
72b5cb89
KH
596 (let ((view-old-buffer-read-only nil)
597 (view-no-disable-on-exit nil))
357f93d2 598 (view-mode-exit t)))
ab7782fc
RS
599
600(defun View-leave ()
601 "Quit View mode and maybe switch buffers, but don't kill this buffer."
602 (interactive)
357f93d2 603 (view-mode-exit))
ab7782fc
RS
604
605(defun View-quit ()
606 "Quit View mode, trying to restore window and buffer to previous state.
e51f616f 607Maybe kill this buffer. Try to restore selected window to previous state
ab7782fc
RS
608and go to previous buffer or window."
609 (interactive)
357f93d2 610 (view-mode-exit nil view-exit-action))
ab7782fc
RS
611
612(defun View-quit-all ()
e51f616f
RS
613 "Quit View mode, trying to restore windows and buffers to previous state.
614Maybe kill current buffer. Try to restore all windows viewing buffer to
ab7782fc
RS
615previous state and go to previous buffer or window."
616 (interactive)
357f93d2 617 (view-mode-exit nil view-exit-action t))
ab7782fc
RS
618
619(defun View-kill-and-leave ()
620 "Quit View mode, kill current buffer and return to previous buffer."
621 (interactive)
357f93d2 622 (view-mode-exit nil (or view-exit-action 'kill-buffer) t))
0d63ba8c 623\f
ab7782fc
RS
624
625;;; Some help routines.
626
627(defun view-window-size ()
9d14bd37
CY
628 ;; Return the height of the current window, excluding the mode line.
629 ;; Using `window-line-height' accounts for variable-height fonts.
630 (let ((h (window-line-height -1)))
631 (if h
632 (1+ (nth 1 h))
633 ;; This should not happen, but if `window-line-height' returns
634 ;; nil, fall back on `window-height'.
635 (1- (window-height)))))
bd0d2c58 636
4e099504
SM
637;; (defun view-last-command (&optional who what)
638;; (setq view-last-command-entry this-command)
639;; (setq view-last-command who)
640;; (setq view-last-command-argument what))
e6211d55 641
4e099504
SM
642;; (defun View-repeat-last-command ()
643;; "Repeat last command issued in View mode."
644;; (interactive)
645;; (if (and view-last-command
646;; (eq view-last-command-entry last-command))
647;; (funcall view-last-command view-last-command-argument))
648;; (setq this-command view-last-command-entry))
e6211d55 649
ab7782fc 650(defun view-recenter ()
f2872f04
CY
651 ;; Recenter point in window and redisplay normally.
652 (recenter '(1)))
ab7782fc
RS
653
654(defun view-page-size-default (lines)
9d14bd37
CY
655 ;; If LINES is nil, 0, or larger than `view-window-size', return nil.
656 ;; Otherwise, return LINES.
657 (and lines
658 (not (zerop (setq lines (prefix-numeric-value lines))))
659 (<= (abs lines)
660 (abs (- (view-window-size) next-screen-context-lines)))
661 (abs lines)))
ab7782fc
RS
662
663(defun view-set-half-page-size-default (lines)
664 ;; Get and maybe set half page size.
5bf70f47
RS
665 (if (not lines) (or view-half-page-size
666 (/ (view-window-size) 2))
ab7782fc
RS
667 (setq view-half-page-size
668 (if (zerop (setq lines (prefix-numeric-value lines)))
669 (/ (view-window-size) 2)
670 (view-page-size-default lines)))))
671
672
673;;; Commands for moving around in the buffer.
674
675(defun View-goto-percent (&optional percent)
676 "Move to end (or prefix PERCENT) of buffer in View mode.
677Display is centered at point.
e51f616f 678Also set the mark at the position where point was."
ab7782fc
RS
679 (interactive "P")
680 (push-mark)
681 (goto-char
682 (if percent
683 (+ (point-min)
684 (floor (* (- (point-max) (point-min)) 0.01
685 (max 0 (min 100 (prefix-numeric-value percent))))))
686 (point-max)))
687 (view-recenter))
688
4e099504
SM
689;; (defun View-goto-line-last (&optional line)
690;; "Move to last (or prefix LINE) line in View mode.
691;; Display is centered at LINE.
692;; Sets mark at starting position and pushes mark ring."
693;; (interactive "P")
694;; (push-mark)
695;; (if line (goto-line (prefix-numeric-value line))
696;; (goto-char (point-max))
697;; (beginning-of-line))
698;; (view-recenter))
f1180544 699
ab7782fc
RS
700(defun View-goto-line (&optional line)
701 "Move to first (or prefix LINE) line in View mode.
702Display is centered at LINE.
e51f616f 703Also set the mark at the position where point was."
e6211d55
RS
704 (interactive "p")
705 (push-mark)
e6ce8c42
GM
706 (goto-char (point-min))
707 (forward-line (1- line))
ab7782fc 708 (view-recenter))
e6211d55 709
06b60517 710(defun View-back-to-mark (&optional _ignore)
0d63ba8c
RS
711 "Return to last mark set in View mode, else beginning of file.
712Display that line at the center of the window.
713This command pops the mark ring, so that successive
714invocations return to earlier marks."
ab7782fc 715 (interactive)
0d63ba8c
RS
716 (goto-char (or (mark t) (point-min)))
717 (pop-mark)
718 (view-recenter))
719\f
ab7782fc
RS
720(defun view-scroll-lines (lines backward default maxdefault)
721 ;; This function does the job for all the scrolling commands.
9d14bd37
CY
722 ;; Scroll forward LINES lines. If BACKWARD is non-nil, scroll backwards.
723 ;; If LINES is negative scroll in the other direction.
724 ;; If LINES is 0 or nil, scroll DEFAULT lines (if DEFAULT is nil, scroll
5a0c3f56 725 ;; by one page). If MAXDEFAULT is non-nil, scroll no more than a window.
ab7782fc
RS
726 (if (or (null lines) (zerop (setq lines (prefix-numeric-value lines))))
727 (setq lines default))
9d14bd37
CY
728 (when (and lines (< lines 0))
729 (setq backward (not backward) lines (- lines)))
730 (when (and maxdefault lines (> lines (view-window-size)))
731 (setq lines nil))
732 (cond (backward (scroll-down lines))
733 ((view-really-at-end)
734 (if view-scroll-auto-exit
735 (View-quit)
736 (ding)
737 (view-end-message)))
738 (t (scroll-up lines)
739 (if (view-really-at-end) (view-end-message)))))
ab7782fc
RS
740
741(defun view-really-at-end ()
e51f616f 742 ;; Return true if buffer end visible. Maybe revert buffer and test.
ab7782fc
RS
743 (and (pos-visible-in-window-p (point-max))
744 (let ((buf (current-buffer))
745 (bufname (buffer-name))
746 (file (buffer-file-name)))
69576401
AS
747 (or (not view-try-extend-at-buffer-end)
748 (null file)
749 (verify-visited-file-modtime buf)
750 (not (file-exists-p file))
751 (when (buffer-modified-p buf)
752 (setq file (file-name-nondirectory file))
753 (not (yes-or-no-p
754 (format
755 "File %s changed on disk. Discard your edits%s? "
756 file
757 (if (string= bufname file) ""
758 (concat " in " bufname))))))
759 (progn
760 (revert-buffer t t t)
761 (pos-visible-in-window-p (point-max)))))))
ab7782fc
RS
762
763(defun view-end-message ()
764 ;; Tell that we are at end of buffer.
765 (goto-char (point-max))
357f93d2 766 (if (window-parameter nil 'quit-restore)
19d73313
RS
767 (message "End of buffer. Type %s to quit viewing."
768 (substitute-command-keys
769 (if view-scroll-auto-exit "\\[View-scroll-page-forward]"
770 "\\[View-quit]")))
771 (message "End of buffer")))
0d63ba8c
RS
772\f
773(defun View-scroll-to-buffer-end ()
774 "Scroll backward or forward so that buffer end is at last line of window."
775 (interactive)
776 (let ((p (if (pos-visible-in-window-p (point-max)) (point))))
777 (goto-char (point-max))
778 (recenter -1)
779 (and p (goto-char p))))
ab7782fc
RS
780
781(defun View-scroll-page-forward (&optional lines)
782 "Scroll \"page size\" or prefix LINES lines forward in View mode.
e51f616f 783Exit if end of text is visible and `view-scroll-auto-exit' is non-nil.
ab7782fc
RS
784\"page size\" is whole window full, or number of lines set by
785\\[View-scroll-page-forward-set-page-size] or
786\\[View-scroll-page-backward-set-page-size].
787If LINES is more than a window-full, only the last window-full is shown."
e6211d55 788 (interactive "P")
5bf70f47 789 (view-scroll-lines lines nil (view-page-size-default view-page-size) nil))
ab7782fc 790
d1ed8492 791(defun View-scroll-page-backward (&optional lines)
ab7782fc 792 "Scroll \"page size\" or prefix LINES lines backward in View mode.
e51f616f 793See also `View-scroll-page-forward'."
e6211d55 794 (interactive "P")
5bf70f47 795 (view-scroll-lines lines t (view-page-size-default view-page-size) nil))
f1180544 796
ab7782fc 797(defun View-scroll-page-forward-set-page-size (&optional lines)
e51f616f 798 "Scroll forward LINES lines in View mode, setting the \"page size\".
ab7782fc 799This is the number of lines which \\[View-scroll-page-forward] and
66d3a2b5
RS
800\\[View-scroll-page-backward] scroll by default.
801If LINES is omitted or = 0, sets \"page size\" to window height and
802scrolls forward that much, otherwise scrolls forward LINES lines and sets
803\"page size\" to the minimum of window height and the absolute value of LINES.
e51f616f 804See also `View-scroll-page-forward'."
e6211d55 805 (interactive "P")
ab7782fc
RS
806 (view-scroll-lines lines nil
807 (setq view-page-size (view-page-size-default lines))
808 nil))
e6211d55 809
ab7782fc
RS
810(defun View-scroll-page-backward-set-page-size (&optional lines)
811 "Scroll backward prefix LINES lines in View mode, setting the \"page size\".
e51f616f 812See also `View-scroll-page-forward-set-page-size'."
e6211d55 813 (interactive "P")
ab7782fc
RS
814 (view-scroll-lines lines t
815 (setq view-page-size (view-page-size-default lines))
816 nil))
817
818(defun View-scroll-line-forward (&optional lines)
819 "Scroll forward one line (or prefix LINES lines) in View mode.
5a0c3f56 820See also `View-scroll-page-forward', but note that scrolling is limited
ab7782fc
RS
821to minimum of LINES and one window-full."
822 (interactive "P")
823 (view-scroll-lines lines nil 1 t))
824
825(defun View-scroll-line-backward (&optional lines)
826 "Scroll backward one line (or prefix LINES lines) in View mode.
e51f616f 827See also `View-scroll-line-forward'."
ab7782fc
RS
828 (interactive "P")
829 (view-scroll-lines lines t 1 t))
830
831(defun View-scroll-half-page-forward (&optional lines)
e51f616f 832 "Scroll forward a \"half page\" (or prefix LINES) lines in View mode.
ab7782fc
RS
833If LINES is not omitted, the \"half page size\" is set to the minimum of
834window height and the absolute value of LINES.
835LINES=0 resets \"half page size\" to half window height."
836 (interactive "P")
837 (view-scroll-lines lines nil (view-set-half-page-size-default lines) t))
838
839(defun View-scroll-half-page-backward (&optional lines)
e51f616f
RS
840 "Scroll backward a \"half page\" (or prefix LINES) lines in View mode.
841See also `View-scroll-half-page-forward'."
ab7782fc
RS
842 (interactive "P")
843 (view-scroll-lines lines t (view-set-half-page-size-default lines) t))
844
e51f616f
RS
845(defun View-revert-buffer-scroll-page-forward (&optional lines)
846 "Scroll forward, reverting buffer if needed, in View mode.
ab7782fc
RS
847If buffer has not been changed and the corresponding file is newer, first
848revert the buffer, then scroll.
849This command is useful if you are viewing a changing file.
e51f616f
RS
850
851The prefix argument LINES says how many lines to scroll.
852If you don't specify a prefix argument, it uses the number of lines set by
ab7782fc
RS
853\\[View-scroll-page-forward-set-page-size] or
854\\[View-scroll-page-backward-set-page-size].
855If LINES is more than a window-full, only the last window-full is shown."
856 (interactive "P")
5d9b78b7 857 (let ((view-scroll-auto-exit nil)
ab7782fc 858 (view-try-extend-at-buffer-end t))
a312f214 859 (view-scroll-lines lines nil (view-page-size-default view-page-size) nil)))
0d63ba8c 860\f
5c05f569 861(defun View-search-regexp-forward (n regexp)
ab7782fc 862 "Search forward for first (or prefix Nth) occurrence of REGEXP in View mode.
66d3a2b5
RS
863
864Displays line found at center of window. Sets mark at starting position and
865pushes mark ring.
866
867Characters @ and ! are special at the beginning of REGEXP. They modify
868the search rather than become part of the pattern searched for.
869@ means search all the buffer i.e. start search at the beginning of buffer.
870! means search for a line that contains no match for the pattern.
871If REGEXP is empty or only consist of these control characters, then
872an earlier remembered REGEXP is used, otherwise REGEXP is remembered
873for use by later search commands.
5534818b
RS
874
875The variable `view-highlight-face' controls the face that is used
876for highlighting the match that is found."
d1ed8492 877 (interactive "p\nsSearch forward (regexp): ")
ab7782fc 878 (view-search n regexp))
e6211d55 879
5c05f569 880(defun View-search-regexp-backward (n regexp)
ab7782fc 881 "Search backward for first (or prefix Nth) occurrence of REGEXP in View mode.
66d3a2b5
RS
882
883Displays line found at center of window. Sets mark at starting position and
884pushes mark ring.
885
886Characters @ and ! are special at the beginning of REGEXP. They modify
887the search rather than become part of the pattern searched for.
888@ means search all the buffer i.e. start search at the end of buffer.
889! means search for a line that contains no match for the pattern.
890If REGEXP is empty or only consist of these control characters, then
891an earlier remembered REGEXP is used, otherwise REGEXP is remembered
892for use by later search commands.
5534818b
RS
893
894The variable `view-highlight-face' controls the face that is used
895for highlighting the match that is found."
e6211d55 896 (interactive "p\nsSearch backward (regexp): ")
ab7782fc 897 (view-search (- n) regexp))
e6211d55 898
ab7782fc
RS
899(defun View-search-last-regexp-forward (n) "\
900Search forward for first (or prefix Nth) instance of last regexp in View mode.
901Displays line found at center of window. Sets mark at starting position and
902pushes mark ring.
5534818b
RS
903
904The variable `view-highlight-face' controls the face that is used
905for highlighting the match that is found."
e6211d55 906 (interactive "p")
ab7782fc 907 (view-search n nil))
e6211d55 908
ab7782fc
RS
909(defun View-search-last-regexp-backward (n) "\
910Search backward for first (or prefix Nth) instance of last regexp in View mode.
e6211d55 911Displays line found at center of window. Sets mark at starting position and
5534818b
RS
912pushes mark ring.
913
914The variable `view-highlight-face' controls the face that is used
915for highlighting the match that is found."
e6211d55 916 (interactive "p")
ab7782fc 917 (view-search (- n) nil))
e6211d55 918
e6211d55 919(defun view-search (times regexp)
66d3a2b5 920 ;; This function does the job for all the View-search- commands.
5a0c3f56
JB
921 ;; Search for the TIMESt match for REGEXP. If TIMES is negative
922 ;; search backwards. If REGEXP is nil use `view-last-regexp'.
53785457 923 ;; Characters "!" and "@" have a special meaning at the beginning of
cae55197
KH
924 ;; REGEXP and are removed from REGEXP before the search "!" means
925 ;; search for lines with no match for REGEXP. "@" means search in
926 ;; the whole buffer, don't start searching from the present point.
ab7782fc
RS
927 (let (where no end ln)
928 (cond
929 ((and regexp (> (length regexp) 0)
930 (or (not (memq (string-to-char regexp) '(?! ?@)))
931 (progn
932 (if (member (substring regexp 0 2) '("!@" "@!"))
933 (setq end t no t ln 2)
934 (setq no (not (setq end (eq ?@ (string-to-char regexp))))
935 ln 1))
936 (> (length (setq regexp (substring regexp ln))) 0))))
937 (setq view-last-regexp (if no (list regexp) regexp)))
938 ((consp view-last-regexp)
939 (setq regexp (car view-last-regexp))
cae55197 940 (unless (setq no (not no)) (setq view-last-regexp regexp)))
ab7782fc
RS
941 (view-last-regexp (setq regexp view-last-regexp)
942 (if no (setq view-last-regexp (list regexp))))
943 (t (error "No previous View-mode search")))
e6211d55 944 (save-excursion
ab7782fc
RS
945 (if end (goto-char (if (< times 0) (point-max) (point-min)))
946 (move-to-window-line (if (< times 0) 0 -1)))
947 (if (if no (view-search-no-match-lines times regexp)
948 (re-search-forward regexp nil t times))
e6211d55
RS
949 (setq where (point))))
950 (if where
951 (progn
952 (push-mark)
953 (goto-char where)
4fe11426
RS
954 (if view-overlay
955 (move-overlay view-overlay (match-beginning 0) (match-end 0))
956 (setq view-overlay
957 (make-overlay (match-beginning 0) (match-end 0))))
82380f84 958 (overlay-put view-overlay 'face view-highlight-face)
e6211d55 959 (beginning-of-line)
ab7782fc
RS
960 (view-recenter))
961 (message "Can't find occurrence %d of %s%s"
962 times (if no "no " "") regexp)
e6211d55
RS
963 (sit-for 4))))
964
5aca5ac3
GM
965;; This is the dumb approach, looking at each line. The original
966;; version of this function looked like it might have been trying to
967;; do something clever, but not succeeding:
968;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-09/msg00073.html
ab7782fc 969(defun view-search-no-match-lines (times regexp)
5aca5ac3
GM
970 "Search for the TIMESth occurrence of a line with no match for REGEXP.
971If such a line is found, return non-nil and set the match-data to that line.
972If TIMES is negative, search backwards."
138c66b0
GM
973 (let ((step (if (>= times 0) 1
974 (setq times (- times))
975 -1)))
5aca5ac3
GM
976 ;; Note that we do not check the current line.
977 (while (and (> times 0)
978 (zerop (forward-line step)))
138c66b0
GM
979 ;; (forward-line 1) returns 0 on moving within the last line.
980 (if (eobp)
981 (setq times -1)
982 (or (re-search-forward regexp (line-end-position) t)
983 (setq times (1- times))))))
984 (and (zerop times)
985 (looking-at ".*")))
ab7782fc 986
49116ac0
JB
987(provide 'view)
988
d501f516 989;;; view.el ends here