* lisp/info-xref.el (info-xref-docstrings): Also skip directories.

This commit is contained in:
Glenn Morris 2011-01-15 18:34:57 -08:00
parent e9bffc61f2
commit e5c7913c2d
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
2011-01-16 Glenn Morris <rgm@gnu.org>
* info-xref.el (info-xref-docstrings): Replace cl function.
Also skip directories.
2011-01-16 Kevin Ryde <user42@zip.com.au>

View file

@ -493,6 +493,7 @@ the sources handy."
(setq filename-list
(dolist (file filename-list (nreverse newlist))
(or (info-xref-lock-file-p file)
(file-directory-p file)
(push file newlist))))
(unless filename-list
(error "No files: %S" pattern))