(lm-keywords-finder-p): Use with-no-warnings.
This commit is contained in:
parent
7788783202
commit
9b45407516
1 changed files with 2 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue