From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82916 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-registry causes an error whenever saving newsrc file Date: Mon, 18 Feb 2013 08:33:28 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <8738wt7nmf.fsf@lifelogs.com> References: <87txp9wz6n.fsf@tsuchiya.vaj.namazu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1361194424 8203 80.91.229.3 (18 Feb 2013 13:33:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 18 Feb 2013 13:33:44 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M31182@lists.math.uh.edu Mon Feb 18 14:34:06 2013 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U7Qr8-0004PH-6I for ding-account@gmane.org; Mon, 18 Feb 2013 14:34:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1U7Qqc-0001al-Ma; Mon, 18 Feb 2013 07:33:34 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1U7Qqb-0001ab-6U for ding@lists.math.uh.edu; Mon, 18 Feb 2013 07:33:33 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1U7QqZ-0003eq-Ox for ding@lists.math.uh.edu; Mon, 18 Feb 2013 07:33:33 -0600 Original-Received: from z.lifelogs.com ([173.255.230.239]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1U7QqY-00028t-0q for ding@gnus.org; Mon, 18 Feb 2013 14:33:30 +0100 Original-Received: from heechee (c-65-96-148-157.hsd1.ma.comcast.net [65.96.148.157]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: tzz) by z.lifelogs.com (Postfix) with ESMTPSA id D7F787E1BF for ; Mon, 18 Feb 2013 13:33:28 +0000 (UTC) X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" In-Reply-To: <87txp9wz6n.fsf@tsuchiya.vaj.namazu.org> (TSUCHIYA Masatoshi's message of "Mon, 18 Feb 2013 22:04:32 +0900") User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3.50 (gnu/linux) X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82916 Archived-At: On Mon, 18 Feb 2013 22:04:32 +0900 TSUCHIYA Masatoshi wrote: TM> I am using the byte-compiled head version of the master branch of Gnus, TM> and am using gnus-registry. In these several months, I always see the TM> following error whenever saving newsrc file. TM> Debugger entered--Lisp error: (void-function some) TM> some(#[(entry-key) "..." [entry-key precious] 2] ((subject ...))) TM> ...snip... TM> registry-prune(...) TM> ...snip... TM> gnus-registry-save() TM> run-hooks(gnus-save-newsrc-hook) TM> apply(run-hooks gnus-save-newsrc-hook) TM> gnus-run-hooks(gnus-save-newsrc-hook) TM> gnus-save-newsrc-file(nil) TM> gnus-group-save-newsrc(nil) TM> call-interactively(gnus-group-save-newsrc nil nil) TM> I think that the above error is caused by the fact that `some' is not TM> declared as an inline function, but cannot find a solution to avoid this TM> problem. Could you help me? I have not seen this error. It seems to be related to Emacs' move to use `cl-' as the prefix of these functions, but `cl.el' should define the `some' alias to `cl-some'. Could you check? `cl.el' is required by `gnus-registry.el': #+begin_src lisp (eval-when-compile (require 'cl)) #+end_src so this seems like maybe you have an older `cl.el' in your load path? I am using a dev version of Emacs compiled last week and the registry works for me. Ted