aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 719f2f6b0aa..1e869565cb4 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1562,7 +1562,7 @@ The file names should be absolute, or relative to the current directory.")
1562;; given as the regular expression "\\.java$" . 1562;; given as the regular expression "\\.java$" .
1563(defun gud-jdb-build-source-files-list (path extn) 1563(defun gud-jdb-build-source-files-list (path extn)
1564 (apply 'nconc (mapcar (lambda (d) 1564 (apply 'nconc (mapcar (lambda (d)
1565 (when (files-directory-p d) 1565 (when (file-directory-p d)
1566 (directory-files d t extn nil)) path)))) 1566 (directory-files d t extn nil)) path))))
1567 1567
1568;; Move point past whitespace. 1568;; Move point past whitespace.