From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: About 'eager' warnings Date: Wed, 23 Apr 2014 20:33:09 -0400 Message-ID: References: <53584C37.1080809@alice.it> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1398299621 13762 80.91.229.3 (24 Apr 2014 00:33:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 24 Apr 2014 00:33:41 +0000 (UTC) Cc: Emacs developers To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 24 02:33:34 2014 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 1Wd7bY-0000aV-5f for ged-emacs-devel@m.gmane.org; Thu, 24 Apr 2014 02:33:32 +0200 Original-Received: from localhost ([::1]:35258 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wd7bX-0006eV-P3 for ged-emacs-devel@m.gmane.org; Wed, 23 Apr 2014 20:33:31 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wd7bM-0006SR-6p for emacs-devel@gnu.org; Wed, 23 Apr 2014 20:33:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wd7bE-0008UR-Ot for emacs-devel@gnu.org; Wed, 23 Apr 2014 20:33:20 -0400 Original-Received: from pruche.dit.umontreal.ca ([132.204.246.22]:35464) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wd7bE-0008UH-K7 for emacs-devel@gnu.org; Wed, 23 Apr 2014 20:33:12 -0400 Original-Received: from ceviche.home (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id s3O0X9nf028788; Wed, 23 Apr 2014 20:33:09 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 54A4466091; Wed, 23 Apr 2014 20:33:09 -0400 (EDT) In-Reply-To: <53584C37.1080809@alice.it> (Angelo Graziosi's message of "Thu, 24 Apr 2014 01:26:47 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV4921=0 X-NAI-Spam-Version: 2.3.0.9378 : core <4921> : inlines <764> : streams <1165649> : uri <1739020> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.22 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:171614 Archived-At: > Compiling emacs-lisp/eieio-base.el > Warning: Eager macro-expansion skipped due to cycle: > =E2=80=A6 =3D> (load "gv.el") =3D> (macroexpand-all (defalias (quote > gv--defun-declaration) =E2=80=A6)) =3D> (macroexpand (pcase =E2=80=A6)) = =3D> (load "pcase.el") > =3D> (macroexpand-all =E2=80=A6) =3D> (macroexpand (dolist =E2=80=A6)) = =3D> (load "gv.el") > Wrote /work/emacs/lisp/emacs-lisp/eieio-base.elc > Are they to be expected? IIRC they are due to `cl' being loaded (and hence redirecting `dolist' to cl.el's version which causes the final "=3D>" in the above cycle). It's harmless and will be fixed as soon as we can move EIEIO to cl-lib. Stefan