comparison lisp/info.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 1221f267b55c
children 9c2f92d8fc34
comparison
equal deleted inserted replaced
100170:86455974b971 100171:d42aff5ca541
53 (defvar Info-history-list nil 53 (defvar Info-history-list nil
54 "List of all Info nodes user has visited. 54 "List of all Info nodes user has visited.
55 Each element of the list is a list (FILENAME NODENAME).") 55 Each element of the list is a list (FILENAME NODENAME).")
56 56
57 (defcustom Info-enable-edit nil 57 (defcustom Info-enable-edit nil
58 "*Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node. 58 "Non-nil means the \\<Info-mode-map>\\[Info-edit] command in Info can edit the current node.
59 This is convenient if you want to write Info files by hand. 59 This is convenient if you want to write Info files by hand.
60 However, we recommend that you not do this. 60 However, we recommend that you not do this.
61 It is better to write a Texinfo file and generate the Info file from that, 61 It is better to write a Texinfo file and generate the Info file from that,
62 because that gives you a printed manual as well." 62 because that gives you a printed manual as well."
63 :type 'boolean 63 :type 'boolean
137 "Face for visited Info cross-references." 137 "Face for visited Info cross-references."
138 :version "22.1" 138 :version "22.1"
139 :group 'info) 139 :group 'info)
140 140
141 (defcustom Info-fontify-visited-nodes t 141 (defcustom Info-fontify-visited-nodes t
142 "*Non-nil to fontify references to visited nodes in `info-xref-visited' face." 142 "Non-nil to fontify references to visited nodes in `info-xref-visited' face."
143 :version "22.1" 143 :version "22.1"
144 :type 'boolean 144 :type 'boolean
145 :group 'info) 145 :group 'info)
146 146
147 (defcustom Info-fontify-maximum-menu-size 100000 147 (defcustom Info-fontify-maximum-menu-size 100000
148 "*Maximum size of menu to fontify if `font-lock-mode' is non-nil. 148 "Maximum size of menu to fontify if `font-lock-mode' is non-nil.
149 Set to nil to disable node fontification." 149 Set to nil to disable node fontification."
150 :type 'integer 150 :type 'integer
151 :group 'info) 151 :group 'info)
152 152
153 (defcustom Info-use-header-line t 153 (defcustom Info-use-header-line t
154 "*Non-nil means to put the beginning-of-node links in an Emacs header-line. 154 "Non-nil means to put the beginning-of-node links in an Emacs header-line.
155 A header-line does not scroll with the rest of the buffer." 155 A header-line does not scroll with the rest of the buffer."
156 :type 'boolean 156 :type 'boolean
157 :group 'info) 157 :group 'info)
158 158
159 (defface info-header-xref 159 (defface info-header-xref
201 These directories are searched after those in `Info-directory-list'." 201 These directories are searched after those in `Info-directory-list'."
202 :type '(repeat directory) 202 :type '(repeat directory)
203 :group 'info) 203 :group 'info)
204 204
205 (defcustom Info-scroll-prefer-subnodes nil 205 (defcustom Info-scroll-prefer-subnodes nil
206 "*If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes. 206 "If non-nil, \\<Info-mode-map>\\[Info-scroll-up] in a menu visits subnodes.
207 207
208 If this is non-nil, and you scroll far enough in a node that its menu 208 If this is non-nil, and you scroll far enough in a node that its menu
209 appears on the screen, the next \\<Info-mode-map>\\[Info-scroll-up] 209 appears on the screen, the next \\<Info-mode-map>\\[Info-scroll-up]
210 moves to a subnode indicated by the following menu item. This means 210 moves to a subnode indicated by the following menu item. This means
211 that you visit a subnode before getting to the end of the menu. 211 that you visit a subnode before getting to the end of the menu.
216 :version "22.1" 216 :version "22.1"
217 :type 'boolean 217 :type 'boolean
218 :group 'info) 218 :group 'info)
219 219
220 (defcustom Info-hide-note-references t 220 (defcustom Info-hide-note-references t
221 "*If non-nil, hide the tag and section reference in *note and * menu items. 221 "If non-nil, hide the tag and section reference in *note and * menu items.
222 If value is non-nil but not `hide', also replaces the \"*note\" with \"see\". 222 If value is non-nil but not `hide', also replaces the \"*note\" with \"see\".
223 If value is non-nil but not t or `hide', the reference section is still shown. 223 If value is non-nil but not t or `hide', the reference section is still shown.
224 `nil' completely disables this feature. If this is non-nil, you might 224 `nil' completely disables this feature. If this is non-nil, you might
225 want to set `Info-refill-paragraphs'." 225 want to set `Info-refill-paragraphs'."
226 :version "22.1" 226 :version "22.1"
229 (const :tag "Hide tag and reference" hide) 229 (const :tag "Hide tag and reference" hide)
230 (other :tag "Only replace tag" tag)) 230 (other :tag "Only replace tag" tag))
231 :group 'info) 231 :group 'info)
232 232
233 (defcustom Info-refill-paragraphs nil 233 (defcustom Info-refill-paragraphs nil
234 "*If non-nil, attempt to refill paragraphs with hidden references. 234 "If non-nil, attempt to refill paragraphs with hidden references.
235 This refilling may accidentally remove explicit line breaks in the Info 235 This refilling may accidentally remove explicit line breaks in the Info
236 file, so be prepared for a few surprises if you enable this feature. 236 file, so be prepared for a few surprises if you enable this feature.
237 This only has an effect if `Info-hide-note-references' is non-nil." 237 This only has an effect if `Info-hide-note-references' is non-nil."
238 :version "22.1" 238 :version "22.1"
239 :type 'boolean 239 :type 'boolean
243 "Depth of breadcrumbs to display. 243 "Depth of breadcrumbs to display.
244 0 means do not display breadcrumbs." 244 0 means do not display breadcrumbs."
245 :type 'integer) 245 :type 'integer)
246 246
247 (defcustom Info-search-whitespace-regexp "\\s-+" 247 (defcustom Info-search-whitespace-regexp "\\s-+"
248 "*If non-nil, regular expression to match a sequence of whitespace chars. 248 "If non-nil, regular expression to match a sequence of whitespace chars.
249 This applies to Info search for regular expressions. 249 This applies to Info search for regular expressions.
250 You might want to use something like \"[ \\t\\r\\n]+\" instead. 250 You might want to use something like \"[ \\t\\r\\n]+\" instead.
251 In the Customization buffer, that is `[' followed by a space, 251 In the Customization buffer, that is `[' followed by a space,
252 a tab, a carriage return (control-M), a newline, and `]+'." 252 a tab, a carriage return (control-M), a newline, and `]+'."
253 :type 'regexp 253 :type 'regexp
254 :group 'info) 254 :group 'info)
255 255
256 (defcustom Info-isearch-search t 256 (defcustom Info-isearch-search t
257 "*If non-nil, isearch in Info searches through multiple nodes. 257 "If non-nil, isearch in Info searches through multiple nodes.
258 Before leaving the initial Info node, where isearch was started, 258 Before leaving the initial Info node, where isearch was started,
259 it fails once with the error message [initial node], and with 259 it fails once with the error message [initial node], and with
260 subsequent C-s/C-r continues through other nodes without failing 260 subsequent C-s/C-r continues through other nodes without failing
261 with this error message in other nodes. When isearch fails for 261 with this error message in other nodes. When isearch fails for
262 the rest of the manual, it wraps aroung the whole manual and 262 the rest of the manual, it wraps aroung the whole manual and