Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
90757bb3
Commit
90757bb3
authored
Apr 14, 2000
by
Gerd Moellmann
Browse files
(gud-jdb-build-source-files-list): Check that directory
exists before calling directory-files.
parent
c1355e1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/gud.el
lisp/gud.el
+3
-1
No files found.
lisp/gud.el
View file @
90757bb3
...
...
@@ -1561,7 +1561,9 @@ The file names should be absolute, or relative to the current directory.")
;; which to search for files with extension EXTN. Normally EXTN is
;; given as the regular expression "\\.java$" .
(
defun
gud-jdb-build-source-files-list
(
path
extn
)
(
apply
'nconc
(
mapcar
(
lambda
(
d
)
(
directory-files
d
t
extn
nil
))
path
)))
(
apply
'nconc
(
mapcar
(
lambda
(
d
)
(
when
(
files-exists-p
d
)
(
directory-files
d
t
extn
nil
))
path
))))
;; Move point past whitespace.
(
defun
gud-jdb-skip-whitespace
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment