(lm-keywords-finder-p): Use with-no-warnings.

This commit is contained in:
Richard M. Stallman 2003-06-04 09:48:50 +00:00
parent 7788783202
commit 9b45407516

View file

@ -456,7 +456,8 @@ This can be found in an RCS or SCCS header."
(let ((keys (lm-keywords-list file)))
(catch 'keyword-found
(while keys
(if (assoc (intern (car keys)) finder-known-keywords)
(if (assoc (intern (car keys))
(with-no-warnings finder-known-keywords))
(throw 'keyword-found t))
(setq keys (cdr keys)))
nil)))