[gnus git] branch master updated: m0-11-188-g0c38751 =1= registry.el (registry-db): Temporary fix old Emacsen compilation
Katsumi <[email protected]> Thu, 12 Mar 2015 00:01:47 +0100
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 0c38751cb18d51ed294dabcfb16ed21a610e2daa (commit)
from f3cd1f22996e850ce85328c16309588750b348a3 (commit)
- Log -----------------------------------------------------------------
commit 0c38751cb18d51ed294dabcfb16ed21a610e2daa
Author: Katsumi Yamaoka <[email protected]>
Date: Wed Mar 11 23:01:33 2015 +0000
registry.el (registry-db): Temporary fix old Emacsen compilation
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 62baeb5..3a3a2a9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-11 Katsumi Yamaoka <[email protected]>
+
+ * registry.el (registry-db): Temporary fix old Emacsen compilation.
+
2015-03-11 Stefan Monnier <[email protected]>
* gnus-registry.el (gnus-registry-handle-action)
diff --git a/lisp/registry.el b/lisp/registry.el
index f26101f..ef076a5 100644
--- a/lisp/registry.el
+++ b/lisp/registry.el
@@ -110,6 +110,7 @@
(defvar registry-db-version 0.2
"The current version of the registry format.")
+(eval (backquote
(defclass registry-db (eieio-persistent)
((version :initarg :version
:initform nil
@@ -121,7 +122,7 @@
;; value rather than an expression, so in order to get the value
;; of `most-positive-fixnum', we need to use an
;; expression that's not just a symbol.
- :initform (symbol-value 'most-positive-fixnum)
+ :initform ,(symbol-value 'most-positive-fixnum)
:type integer
:custom integer
:documentation "The maximum number of registry entries.")
@@ -146,6 +147,7 @@
(data :initarg :data
:type hash-table
:documentation "The data hashtable.")))
+))
(defmethod initialize-instance :BEFORE ((this registry-db) slots)
"Check whether a registry object needs to be upgraded."
-----------------------------------------------------------------------
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/ChangeLog | 4 ++++
lisp/registry.el | 4 +++-
2 files changed, 7 insertions(+), 1 deletion(-)
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