# HG changeset patch # User Glenn Morris # Date 1295145297 28800 # Node ID db24da5a1cc0ca84e0e9d77e46bd1808384bfff9 # Parent 61f7601898b1cf2ea1580c639eafef9853b0107f * lisp/info-xref.el (info-xref-docstrings): Also skip directories. diff -r 61f7601898b1 -r db24da5a1cc0 lisp/ChangeLog --- a/lisp/ChangeLog Sat Jan 15 18:21:30 2011 -0800 +++ b/lisp/ChangeLog Sat Jan 15 18:34:57 2011 -0800 @@ -1,6 +1,7 @@ 2011-01-16 Glenn Morris * info-xref.el (info-xref-docstrings): Replace cl function. + Also skip directories. 2011-01-16 Kevin Ryde diff -r 61f7601898b1 -r db24da5a1cc0 lisp/info-xref.el --- a/lisp/info-xref.el Sat Jan 15 18:21:30 2011 -0800 +++ b/lisp/info-xref.el Sat Jan 15 18:34:57 2011 -0800 @@ -493,6 +493,7 @@ (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))