summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-05 17:10:16 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-05 17:10:16 +0000
commit70a31a663a8a40f00d90e1ff2fdecd3076b2c56d (patch)
treee2f5b583f6828c5102b39d0b8592644cf107a06c
parent6c481c682456143764cbb33110560e856cf12208 (diff)
downloademacs-70a31a663a8a40f00d90e1ff2fdecd3076b2c56d.tar.gz
(finder-compile-keywords): Don't process file names that start with `.'.
-rw-r--r--lisp/finder.el2
1 files changed, 1 insertions, 1 deletions
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))