(finder-compile-keywords): Don't process file names that start with `.'.
This commit is contained in:
parent
1d0d784f03
commit
6656e09937
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ arguments compiles from `load-path'."
|
|||
(lambda (d)
|
||||
(mapcar
|
||||
(lambda (f)
|
||||
(if (and (string-match "^[^=].*\\.el$" f)
|
||||
(if (and (string-match "^[^=.].*\\.el$" f)
|
||||
(not (member f processed)))
|
||||
(let (summary keystart keywords)
|
||||
(setq processed (cons f processed))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue