Variable: idlwave-scan-all-buffers-for-routine-info
idlwave-scan-all-buffers-for-routine-info is a customizable variable
defined in idlwave.el.gz.
Value
t
Documentation
Non-nil means, scan buffers for IDL programs when updating info.
The scanning is done by the command idlwave-update-routine-info.
The following values are allowed:
nil Don't scan any buffers.
t Scan all idlwave-mode buffers in the current editing session.
current Scan only the current buffer, but no other buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defcustom idlwave-scan-all-buffers-for-routine-info t
"Non-nil means, scan buffers for IDL programs when updating info.
The scanning is done by the command `idlwave-update-routine-info'.
The following values are allowed:
nil Don't scan any buffers.
t Scan all `idlwave-mode' buffers in the current editing session.
`current' Scan only the current buffer, but no other buffers."
:group 'idlwave-routine-info
:type '(choice
(const :tag "No buffer" nil)
(const :tag "All buffers" t)
(const :tag "Current buffer only" current)))