aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-05-11 22:24:40 +0000
committerStefan Monnier2001-05-11 22:24:40 +0000
commite5ef2f5cae31deb27dc93c6a4e16c0b4f3138353 (patch)
tree7c6d53b8087345a292eba383960b5024e3f128c7
parentfa443ddfd67310db5bde52cb92da3ba6be9b0df5 (diff)
downloademacs-e5ef2f5cae31deb27dc93c6a4e16c0b4f3138353.tar.gz
emacs-e5ef2f5cae31deb27dc93c6a4e16c0b4f3138353.zip
(gud-jdb-build-source-files-list): Fix paren typo.
-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 ()