[gnus git] branch master updated: m0-5-269-g88a7262 =1= Silence byte compiler.
David Engster <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 88a72625d1e27f31be5f521ed8a7369e9f708884 (commit)
from 68819187129126e5cfb9aa0cf0249f98cddc375c (commit)
- Log -----------------------------------------------------------------
commit 88a72625d1e27f31be5f521ed8a7369e9f708884
Author: David Engster <[email protected]>
Date: Fri Feb 22 21:56:34 2013 +0100
Silence byte compiler.
(gnus-registry-read): Wrap call to `eieio-persistent-read' with two
arguments in `with-no-warnings', so that older Emacsen don't complain
during byte compilation.
diff --git a/lisp/gnus-registry.el b/lisp/gnus-registry.el
index 829734f..d4764c0 100644
--- a/lisp/gnus-registry.el
+++ b/lisp/gnus-registry.el
@@ -299,7 +299,8 @@ This is not required after changing `gnus-registry-cache-file'."
(setq gnus-registry-db
(gnus-registry-fixup-registry
(condition-case nil
- (eieio-persistent-read file 'registry-db)
+ (with-no-warnings
+ (eieio-persistent-read file 'registry-db))
;; Older EIEIO versions do not check the class name.
('wrong-number-of-arguments
(eieio-persistent-read file)))))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/gnus-registry.el | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project