1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 13:31:37 -07:00

(gud-jdb-build-source-files-list): Fix paren typo.

This commit is contained in:
Stefan Monnier 2001-05-11 22:24:40 +00:00
parent fa443ddfd6
commit e5ef2f5cae

View file

@ -1533,7 +1533,8 @@ the source code display in sync with the debugging session.")
(defun gud-jdb-build-source-files-list (path extn)
(apply 'nconc (mapcar (lambda (d)
(when (file-directory-p d)
(directory-files d t extn nil)) path))))
(directory-files d t extn nil)))
path)))
;; Move point past whitespace.
(defun gud-jdb-skip-whitespace ()