comparison lisp/info.el @ 97880:b81e767914b5

(Info-hide-note-references, Info-refill-paragraphs): Doc fixes.
author Glenn Morris <rgm@gnu.org>
date Sat, 30 Aug 2008 20:16:36 +0000
parents 1bee9147e1b8
children 69fc13b4259f
comparison
equal deleted inserted replaced
97879:8912ff5c3a2c 97880:b81e767914b5
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." 224 `nil' completely disables this feature. If this is non-nil, you might
225 want to set `Info-refill-paragraphs'."
225 :version "22.1" 226 :version "22.1"
226 :type '(choice (const :tag "No hiding" nil) 227 :type '(choice (const :tag "No hiding" nil)
227 (const :tag "Replace tag and hide reference" t) 228 (const :tag "Replace tag and hide reference" t)
228 (const :tag "Hide tag and reference" hide) 229 (const :tag "Hide tag and reference" hide)
229 (other :tag "Only replace tag" tag)) 230 (other :tag "Only replace tag" tag))
230 :group 'info) 231 :group 'info)
231 232
232 (defcustom Info-refill-paragraphs nil 233 (defcustom Info-refill-paragraphs nil
233 "*If non-nil, attempt to refill paragraphs with hidden references. 234 "*If non-nil, attempt to refill paragraphs with hidden references.
234 This refilling may accidentally remove explicit line breaks in the Info 235 This refilling may accidentally remove explicit line breaks in the Info
235 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."
236 :version "22.1" 238 :version "22.1"
237 :type 'boolean 239 :type 'boolean
238 :group 'info) 240 :group 'info)
239 241
240 (defcustom Info-search-whitespace-regexp "\\s-+" 242 (defcustom Info-search-whitespace-regexp "\\s-+"