]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-jdb-build-source-files-list): Check that directory
authorGerd Moellmann <gerd@gnu.org>
Fri, 14 Apr 2000 13:27:48 +0000 (13:27 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 14 Apr 2000 13:27:48 +0000 (13:27 +0000)
exists before calling directory-files.

lisp/gud.el

index 67aa59c7b88deccf2ad285879b26ded3f0ae93ad..0d629aa7aac97b511f50179fe921e380d11000cc 100644 (file)
@@ -1561,7 +1561,9 @@ The file names should be absolute, or relative to the current directory.")
 ;; which to search for files with extension EXTN.  Normally EXTN is
 ;; given as the regular expression "\\.java$" .
 (defun gud-jdb-build-source-files-list (path extn)
-  (apply 'nconc (mapcar (lambda (d) (directory-files d t extn nil)) path)))
+  (apply 'nconc (mapcar (lambda (d)
+                         (when (files-exists-p d)
+                           (directory-files d t extn nil)) path))))
 
 ;; Move point past whitespace.
 (defun gud-jdb-skip-whitespace ()