comparison lisp/view.el @ 100171:d42aff5ca541

* align.el: * allout.el: * apropos.el: * arc-mode.el: * autoinsert.el: * avoid.el: * battery.el: * bookmark.el: * buff-menu.el: * calculator.el: * chistory.el: * cmuscheme.el: * comint.el: * compare-w.el: * dabbrev.el: * delim-col.el: * desktop.el: * diff-mode.el: * diff.el: * dired-aux.el: * dired-x.el: * dired.el: * dos-vars.el: * ediff-diff.el: * ediff-help.el: * ediff-init.el: * ediff-merg.el: * ediff-mult.el: * ediff-ptch.el: * ediff-vers.el: * ediff-wind.el: * ediff.el: * emerge.el: * facemenu.el: * faces.el: * ffap.el: * filecache.el: * find-dired.el: * font-core.el: * font-lock.el: * forms.el: * fringe.el: * help-at-pt.el: * hippie-exp.el: * ido.el: * image-file.el: * imenu.el: * indent.el: * info.el: * isearchb.el: * iswitchb.el: * jit-lock.el: * jka-compr.el: * log-edit.el: * lpr.el: * ls-lisp.el: * man.el: * menu-bar.el: * midnight.el: * mouse-sel.el: * mouse.el: * msb.el: * outline.el: * paren.el: * pcmpl-cvs.el: * pcmpl-gnu.el: * pcomplete.el: * pcvs-info.el: * pcvs-parse.el: * printing.el: * ps-mule.el: * ps-print.el: * replace.el: * ruler-mode.el: * saveplace.el: * sb-image.el: * scroll-bar.el: * sha1.el: * shadowfile.el: * shell.el: * sort.el: * speedbar.el: * strokes.el: * tempo.el: * term.el: * terminal.el: * time-stamp.el: * time.el: * tree-widget.el: * type-break.el: * vc-cvs.el: * vc-hg.el: * vc-mcvs.el: * vc-rcs.el: * vc-sccs.el: * vc.el: * view.el: * w32-vars.el: * whitespace.el: * wid-edit.el: Remove leading * from docstrings of defcustoms, deffaces, defconsts and defuns.
author Lute Kamstra <lute@gnu.org>
date Wed, 03 Dec 2008 05:48:14 +0000
parents f1a064081e2e
children a9dc0e7c3f2b
comparison
equal deleted inserted replaced
100170:86455974b971 100171:d42aff5ca541
50 :link '(custom-manual "(emacs)Misc File Ops") 50 :link '(custom-manual "(emacs)Misc File Ops")
51 :group 'wp 51 :group 'wp
52 :group 'editing) 52 :group 'editing)
53 53
54 (defcustom view-highlight-face 'highlight 54 (defcustom view-highlight-face 'highlight
55 "*The face used for highlighting the match found by View mode search." 55 "The face used for highlighting the match found by View mode search."
56 :type 'face 56 :type 'face
57 :group 'view) 57 :group 'view)
58 58
59 ;; `view-mode-auto-exit' is replaced by the following option variable which 59 ;; `view-mode-auto-exit' is replaced by the following option variable which
60 ;; only says if scrolling past buffer end should leave view mode or not, it 60 ;; only says if scrolling past buffer end should leave view mode or not, it
61 ;; doesn't say if leaving view mode should restore windows or not. The latter 61 ;; doesn't say if leaving view mode should restore windows or not. The latter
62 ;; is now controlled by the presence of a value in `view-return-to-alist'. 62 ;; is now controlled by the presence of a value in `view-return-to-alist'.
63 (defcustom view-scroll-auto-exit nil 63 (defcustom view-scroll-auto-exit nil
64 "*Non-nil means scrolling past the end of buffer exits View mode. 64 "Non-nil means scrolling past the end of buffer exits View mode.
65 A value of nil means attempting to scroll past the end of the buffer, 65 A value of nil means attempting to scroll past the end of the buffer,
66 only rings the bell and gives a message on how to leave." 66 only rings the bell and gives a message on how to leave."
67 :type 'boolean 67 :type 'boolean
68 :group 'view) 68 :group 'view)
69 69
70 (defcustom view-try-extend-at-buffer-end nil 70 (defcustom view-try-extend-at-buffer-end nil
71 "*Non-nil means try to load more of file when reaching end of buffer. 71 "Non-nil means try to load more of file when reaching end of buffer.
72 This variable is mainly intended to be temporarily set to non-nil by 72 This variable is mainly intended to be temporarily set to non-nil by
73 the F command in view-mode, but you can set it to t if you want the action 73 the F command in view-mode, but you can set it to t if you want the action
74 for all scroll commands in view mode." 74 for all scroll commands in view mode."
75 :type 'boolean 75 :type 'boolean
76 :group 'view) 76 :group 'view)
77 77
78 ;;;###autoload 78 ;;;###autoload
79 (defcustom view-remove-frame-by-deleting t 79 (defcustom view-remove-frame-by-deleting t
80 "*Determine how View mode removes a frame no longer needed. 80 "Determine how View mode removes a frame no longer needed.
81 If nil, make an icon of the frame. If non-nil, delete the frame." 81 If nil, make an icon of the frame. If non-nil, delete the frame."
82 :type 'boolean 82 :type 'boolean
83 :group 'view 83 :group 'view
84 ;; Changed the default of this to t for Emacs 23. Users consider 84 ;; Changed the default of this to t for Emacs 23. Users consider
85 ;; frame iconification annoying. 85 ;; frame iconification annoying.
86 :version "23.1") 86 :version "23.1")
87 87
88 (defcustom view-exits-all-viewing-windows nil 88 (defcustom view-exits-all-viewing-windows nil
89 "*Non-nil means restore all windows used to view buffer. 89 "Non-nil means restore all windows used to view buffer.
90 Commands that restore windows when finished viewing a buffer, apply to all 90 Commands that restore windows when finished viewing a buffer, apply to all
91 windows that display the buffer and have restore information in 91 windows that display the buffer and have restore information in
92 `view-return-to-alist'. 92 `view-return-to-alist'.
93 If `view-exits-all-viewing-windows' is nil, only the selected window is 93 If `view-exits-all-viewing-windows' is nil, only the selected window is
94 considered for restoring." 94 considered for restoring."
95 :type 'boolean 95 :type 'boolean
96 :group 'view) 96 :group 'view)
97 97
98 (defcustom view-inhibit-help-message nil 98 (defcustom view-inhibit-help-message nil
99 "*Non-nil inhibits the help message shown upon entering View mode." 99 "Non-nil inhibits the help message shown upon entering View mode."
100 :type 'boolean 100 :type 'boolean
101 :group 'view 101 :group 'view
102 :version "22.1") 102 :version "22.1")
103 103
104 ;;;###autoload 104 ;;;###autoload