comparison lisp/gud.el @ 28992:c547172f003f

(gud-jdb-directories): Doc fix.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 19 May 2000 20:35:18 +0000
parents 2e0946b26643
children 4a6ff467897e
comparison
equal deleted inserted replaced
28991:f8bcf3bec2a6 28992:c547172f003f
1543 (defvar gud-jdb-history nil) 1543 (defvar gud-jdb-history nil)
1544 1544
1545 ;; List of Java source file directories. 1545 ;; List of Java source file directories.
1546 (defvar gud-jdb-directories (list ".") 1546 (defvar gud-jdb-directories (list ".")
1547 "*A list of directories that gud jdb should search for source code. 1547 "*A list of directories that gud jdb should search for source code.
1548 The file names should be absolute, or relative to the current directory.") 1548 The file names should be absolute, or relative to the current
1549 directory.
1550
1551 The set of .java files residing in the directories listed are
1552 syntactically analyzed to determine the classes they define and the
1553 packages in which these classes belong. In this way gud jdb maps the
1554 package-qualified class names output by the jdb debugger to the source
1555 file from which the class originated. This allows gud mode to keep
1556 the source code display in sync with the debugging session.")
1549 1557
1550 ;; List of the java source files for this debugging session. 1558 ;; List of the java source files for this debugging session.
1551 (defvar gud-jdb-source-files nil) 1559 (defvar gud-jdb-source-files nil)
1552 1560
1553 ;; Association list of fully qualified class names (package + class name) and 1561 ;; Association list of fully qualified class names (package + class name) and