summaryrefslogtreecommitdiff
path: root/lisp/gud.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-04-17 10:37:49 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-04-17 10:37:49 +0000
commit471cd1d3feb9707b72bb3cc6948fe539d9dd344a (patch)
tree9f7d238153ff06504955491684c4b443d4779cdc /lisp/gud.el
parent84e4ce49e660637c4f1bfef655b7307b3d619955 (diff)
downloademacs-471cd1d3feb9707b72bb3cc6948fe539d9dd344a.tar.gz
(gud-jdb-build-source-files-list): Fix typo.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
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.