aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gud.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 4b2b621ee12..0161e854854 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1533,7 +1533,8 @@ the source code display in sync with the debugging session.")
1533(defun gud-jdb-build-source-files-list (path extn) 1533(defun gud-jdb-build-source-files-list (path extn)
1534 (apply 'nconc (mapcar (lambda (d) 1534 (apply 'nconc (mapcar (lambda (d)
1535 (when (file-directory-p d) 1535 (when (file-directory-p d)
1536 (directory-files d t extn nil)) path)))) 1536 (directory-files d t extn nil)))
1537 path)))
1537 1538
1538;; Move point past whitespace. 1539;; Move point past whitespace.
1539(defun gud-jdb-skip-whitespace () 1540(defun gud-jdb-skip-whitespace ()