]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-jdb-build-source-files-list): Fix paren typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 11 May 2001 22:24:40 +0000 (22:24 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 11 May 2001 22:24:40 +0000 (22:24 +0000)
lisp/gud.el

index 4b2b621ee12a4ea6ff585cb4af0e2cf4792e6cc6..0161e854854c22626c68d0abf6f22ad1a975788f 100644 (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 ()