From 6656e09937e06bb9a570efe4df5fedab38581b82 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 5 Aug 1997 17:10:16 +0000 Subject: [PATCH] (finder-compile-keywords): Don't process file names that start with `.'. --- lisp/finder.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/finder.el b/lisp/finder.el index 915d88f34b9..57f5d331b0e 100644 --- a/lisp/finder.el +++ b/lisp/finder.el @@ -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)) -- 2.39.2