Mercurial > emacs
changeset 51456:ec176c8dbf38
(lm-keywords-finder-p): Use with-no-warnings.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 04 Jun 2003 09:48:50 +0000 |
parents | 5d1558b29b67 |
children | 4363ea1a617b |
files | lisp/emacs-lisp/lisp-mnt.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mnt.el Wed Jun 04 09:42:47 2003 +0000 +++ b/lisp/emacs-lisp/lisp-mnt.el Wed Jun 04 09:48:50 2003 +0000 @@ -456,7 +456,8 @@ (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)))