+2000-04-15 Gerd Moellmann <gerd@gnu.org>
+
+ * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
+ to file-directory-p.
+
2000-04-14 Gerd Moellmann <gerd@gnu.org>
* gud.el (gud-jdb-build-source-files-list): Check that directory
;; given as the regular expression "\\.java$" .
(defun gud-jdb-build-source-files-list (path extn)
(apply 'nconc (mapcar (lambda (d)
- (when (files-exists-p d)
+ (when (files-directory-p d)
(directory-files d t extn nil)) path))))
;; Move point past whitespace.