comparison lisp/view.el @ 50634:31489b0b9b0d

(view-read-only): Move from view.el to files.el.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 18 Apr 2003 13:53:18 +0000
parents e88404e8f2cf
children 01b16e9a75fb
comparison
equal deleted inserted replaced
50633:956b2eed924d 50634:31489b0b9b0d
50 "Peruse file or buffer without editing." 50 "Peruse file or buffer without editing."
51 :link '(function-link view-mode) 51 :link '(function-link view-mode)
52 :link '(custom-manual "(emacs)Misc File Ops") 52 :link '(custom-manual "(emacs)Misc File Ops")
53 :group 'wp 53 :group 'wp
54 :group 'editing) 54 :group 'editing)
55
56 (defcustom view-read-only nil
57 "*Non-nil means buffers visiting files read-only, do it in view mode."
58 :type 'boolean
59 :group 'view)
60 55
61 (defcustom view-highlight-face 'highlight 56 (defcustom view-highlight-face 'highlight
62 "*The face used for highlighting the match found by View mode search." 57 "*The face used for highlighting the match found by View mode search."
63 :type 'face 58 :type 'face
64 :group 'view) 59 :group 'view)