diff options
| author | Richard M. Stallman | 1998-05-24 17:16:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-24 17:16:20 +0000 |
| commit | 500f12df892637116a998dfd7deda9a4e1ed09ae (patch) | |
| tree | 0b3a0417dc88e7456157c7a6f07ed4cc6821a8e9 | |
| parent | b8e2ae058095c2e79649c27382be00ac1a57c133 (diff) | |
| download | emacs-500f12df892637116a998dfd7deda9a4e1ed09ae.tar.gz emacs-500f12df892637116a998dfd7deda9a4e1ed09ae.zip | |
(gud-jdb-class-source-alist): defvar moved up.
(gud-jdb-analysis-buffer): Likewise.
| -rw-r--r-- | lisp/gud.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 66cd552c7a8..9ccd06b4639 100644 --- a/lisp/gud.el +++ b/lisp/gud.el | |||
| @@ -1494,6 +1494,13 @@ The file names should be absolute, or relative to the current directory.") | |||
| 1494 | ;; List of the java source files for this debugging session. | 1494 | ;; List of the java source files for this debugging session. |
| 1495 | (defvar gud-jdb-source-files nil) | 1495 | (defvar gud-jdb-source-files nil) |
| 1496 | 1496 | ||
| 1497 | ;; Association list of fully qualified class names (package + class name) and | ||
| 1498 | ;; their source files. | ||
| 1499 | (defvar gud-jdb-class-source-alist nil) | ||
| 1500 | |||
| 1501 | ;; This is used to hold a source file during analysis. | ||
| 1502 | (defvar gud-jdb-analysis-buffer nil) | ||
| 1503 | |||
| 1497 | ;; Return a list of java source files. PATH gives the directories in | 1504 | ;; Return a list of java source files. PATH gives the directories in |
| 1498 | ;; which to search for files with extension EXTN. Normally EXTN is | 1505 | ;; which to search for files with extension EXTN. Normally EXTN is |
| 1499 | ;; given as the regular expression "\\.java$" . | 1506 | ;; given as the regular expression "\\.java$" . |
| @@ -1695,13 +1702,6 @@ The file names should be absolute, or relative to the current directory.") | |||
| 1695 | (cons c file)) | 1702 | (cons c file)) |
| 1696 | (gud-jdb-analyze-source gud-jdb-analysis-buffer file))) | 1703 | (gud-jdb-analyze-source gud-jdb-analysis-buffer file))) |
| 1697 | 1704 | ||
| 1698 | ;; Association list of fully qualified class names (package + class name) and | ||
| 1699 | ;; their source files. | ||
| 1700 | (defvar gud-jdb-class-source-alist nil) | ||
| 1701 | |||
| 1702 | ;; This is used to hold a source file during analysis. | ||
| 1703 | (defvar gud-jdb-analysis-buffer nil) | ||
| 1704 | |||
| 1705 | ;; Return an alist of fully qualified classes and the source files | 1705 | ;; Return an alist of fully qualified classes and the source files |
| 1706 | ;; holding their definitions. SOURCES holds a list of all the source | 1706 | ;; holding their definitions. SOURCES holds a list of all the source |
| 1707 | ;; files to examine. | 1707 | ;; files to examine. |