aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-05-19 20:35:18 +0000
committerGerd Moellmann2000-05-19 20:35:18 +0000
commit8050f8c8a59e0b1598b0bc6bae4dc924cd4761bb (patch)
tree735bce62b5bc116ef80cab6484d7d14a06ae16b0
parenta1a8b28e527a498125ac93f15176be1e706f016b (diff)
downloademacs-8050f8c8a59e0b1598b0bc6bae4dc924cd4761bb.tar.gz
emacs-8050f8c8a59e0b1598b0bc6bae4dc924cd4761bb.zip
(gud-jdb-directories): Doc fix.
-rw-r--r--lisp/gud.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 2953834b8ff..c2e99948954 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1545,7 +1545,15 @@ and source-file directory for your debugger."
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.
1548The file names should be absolute, or relative to the current directory.") 1548The file names should be absolute, or relative to the current
1549directory.
1550
1551The set of .java files residing in the directories listed are
1552syntactically analyzed to determine the classes they define and the
1553packages in which these classes belong. In this way gud jdb maps the
1554package-qualified class names output by the jdb debugger to the source
1555file from which the class originated. This allows gud mode to keep
1556the 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)