Function: idlwave-list-buffer-load-path-shadows
idlwave-list-buffer-load-path-shadows is an interactive and
byte-compiled function defined in idlwave.el.gz.
Signature
(idlwave-list-buffer-load-path-shadows &optional ARG)
Documentation
List the load path shadows of all routines defined in current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-list-buffer-load-path-shadows (&optional _arg)
"List the load path shadows of all routines defined in current buffer."
(interactive)
(idlwave-routines)
(if (derived-mode-p 'idlwave-mode)
(idlwave-list-load-path-shadows
nil (idlwave-update-current-buffer-info 'save-buffer)
"in current buffer")
(error "Current buffer is not in idlwave-mode")))