comparison lisp/info.el @ 243:f220cc83d72e r20-5b20

Import from CVS: tag r20-5b20
author cvs
date Mon, 13 Aug 2007 10:17:07 +0200
parents 41f2f0e326e9
children 727739f917cb
comparison
equal deleted inserted replaced
242:fc816b73a05f 243:f220cc83d72e
377 377
378 (defvar Info-default-directory-list nil 378 (defvar Info-default-directory-list nil
379 "*List of directories to search for Info documents, and `dir' or `localdir' files. 379 "*List of directories to search for Info documents, and `dir' or `localdir' files.
380 The value of `Info-default-directory-list' will be initialized to a 380 The value of `Info-default-directory-list' will be initialized to a
381 reasonable default by the startup code, and usually doesn't need to be 381 reasonable default by the startup code, and usually doesn't need to be
382 changed in your personal configuration, though you may do so if you like. 382 changed in your personal configuration, though you may do so if you
383 like, and this is where to do that.
383 384
384 The first directory on this list must contain a `dir' file like the one 385 The first directory on this list must contain a `dir' file like the one
385 supplied with XEmacs, which will be used as the (dir)Top node. 386 supplied with XEmacs, which will be used as the (dir)Top node.
386 387
387 For more information, see the documentation to the variable: 388 For more information, see the documentation to the variables:
388 `Info-directory-list'.") 389 `Info-additional-search-directory-list' and `Info-directory-list'.")
389 390
390 (defcustom Info-additional-search-directory-list nil 391 (defcustom Info-additional-search-directory-list nil
391 "*List of additional directories to search for Info documentation 392 "*List of additional directories to search for Info documentation
392 files. These directories are not searched for merging the `dir' 393 files. These directories are not searched for merging the `dir'
393 file. An example might be something like: 394 file. An example might be something like:
403 (let ((path (getenv "INFOPATH"))) 404 (let ((path (getenv "INFOPATH")))
404 (if path 405 (if path
405 (split-string path path-separator) 406 (split-string path path-separator)
406 Info-default-directory-list)) 407 Info-default-directory-list))
407 "List of directories to search for Info documentation files. 408 "List of directories to search for Info documentation files.
408 Default is to use the environment variable INFOPATH if it exists, 409
409 else to use `Info-default-directory-list'. 410 The default is to use the environment variable INFOPATH if it exists,
410 The first directory in this list, the \"dir\" file there will become 411 else to use `Info-default-directory-list'. The first directory in
411 the (dir)Top node of the Info documentation tree.") 412 this list, the \"dir\" file there will become the (dir)Top node of the
413 Info documentation tree. If you wish to modify the info search path,
414 use `M-x customize-variable, Info-default-directory-list' to do so.")
412 415
413 (defcustom Info-localdir-heading-regexp 416 (defcustom Info-localdir-heading-regexp
414 "^Locally installed XEmacs Packages:?" 417 "^Locally installed XEmacs Packages:?"
415 "The menu part of localdir files will be inserted below this topic 418 "The menu part of localdir files will be inserted below this topic
416 heading." 419 heading."