From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.devel Subject: Re: :tracker in eieio classes Date: Fri, 12 Feb 2016 14:49:31 +0800 Message-ID: <871t8ibeys.fsf@ericabrahamsen.net> References: <87a8n67a9c.fsf@gnus.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1455259864 10875 80.91.229.3 (12 Feb 2016 06:51:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 12 Feb 2016 06:51:04 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 12 07:50:55 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aU7Z8-0005FP-1L for ged-emacs-devel@m.gmane.org; Fri, 12 Feb 2016 07:50:54 +0100 Original-Received: from localhost ([::1]:57653 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aU7Z7-0002KH-98 for ged-emacs-devel@m.gmane.org; Fri, 12 Feb 2016 01:50:53 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37783) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aU7YO-0001uO-3C for emacs-devel@gnu.org; Fri, 12 Feb 2016 01:50:48 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aU7Xv-0000OL-T0 for emacs-devel@gnu.org; Fri, 12 Feb 2016 01:50:07 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:43684) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aU7Xv-0000MZ-Iw for emacs-devel@gnu.org; Fri, 12 Feb 2016 01:49:39 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aU7Xs-0004Gf-E4 for emacs-devel@gnu.org; Fri, 12 Feb 2016 07:49:36 +0100 Original-Received: from 116.1.70.96 ([116.1.70.96]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Feb 2016 07:49:36 +0100 Original-Received: from eric by 116.1.70.96 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Feb 2016 07:49:36 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 17 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 116.1.70.96 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) Cancel-Lock: sha1:D7MLD2gcjicr7ldyqADe/tQ48HA= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:199790 Archived-At: Lars Ingebrigtsen writes: > When compiling registry.el, I get the following: > > ELC gnus/registry.elc > > In toplevel form: > gnus/registry.el:182:21:Warning: Unknown slot `:tracker' > > I'm not very familiar with eieio, so I have no idea whether this is a > real bug or what to do about it. I've noticed that, while tag references to slots work, the compiler wants a symbol. I think if you just switch that to (oref db 'tracker) it should be quiet. Or (eieio-oref db 'tracker). Eric