Variable: gud-dbx-directories

gud-dbx-directories is a customizable variable defined in gud.el.gz.

Value

nil

Documentation

A list of directories that dbx should search for source code.

If nil, only source files in the program directory will be known to dbx.

The file names should be absolute, or relative to the directory containing the executable being debugged.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defcustom gud-dbx-directories nil
  "A list of directories that dbx should search for source code.
If nil, only source files in the program directory
will be known to dbx.

The file names should be absolute, or relative to the directory
containing the executable being debugged."
  :type '(choice (const :tag "Current Directory" nil)
		 (repeat :value ("")
                         directory)))