From 471cd1d3feb9707b72bb3cc6948fe539d9dd344a Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 17 Apr 2000 10:37:49 +0000 Subject: [PATCH] (gud-jdb-build-source-files-list): Fix typo. --- lisp/gud.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") ;; given as the regular expression "\\.java$" . (defun gud-jdb-build-source-files-list (path extn) (apply 'nconc (mapcar (lambda (d) - (when (files-directory-p d) + (when (file-directory-p d) (directory-files d t extn nil)) path)))) ;; Move point past whitespace. -- 2.39.5