From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ulrich Mueller Newsgroups: gmane.emacs.devel Subject: elint cannot handle dolist any more? Date: Sat, 14 Jul 2012 16:48:08 +0200 Message-ID: <20481.34472.74392.198061@a1i15.kph.uni-mainz.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1342277306 20813 80.91.229.3 (14 Jul 2012 14:48:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 14 Jul 2012 14:48:26 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 14 16:48:26 2012 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 1Sq3dx-0001mm-GI for ged-emacs-devel@m.gmane.org; Sat, 14 Jul 2012 16:48:25 +0200 Original-Received: from localhost ([::1]:53496 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sq3dw-0000mP-K4 for ged-emacs-devel@m.gmane.org; Sat, 14 Jul 2012 10:48:24 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:53929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sq3du-0000m9-EE for emacs-devel@gnu.org; Sat, 14 Jul 2012 10:48:23 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sq3dt-0004iN-Id for emacs-devel@gnu.org; Sat, 14 Jul 2012 10:48:22 -0400 Original-Received: from a1iwww1.kph.uni-mainz.de ([134.93.134.1]:52425) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sq3dt-0004O4-9U for emacs-devel@gnu.org; Sat, 14 Jul 2012 10:48:21 -0400 Original-Received: from a1i15.kph.uni-mainz.de (a1i15.kph.uni-mainz.de [134.93.134.92]) by a1iwww1.kph.uni-mainz.de (8.14.4/8.13.4) with ESMTP id q6EEm8l8019014 for ; Sat, 14 Jul 2012 16:48:08 +0200 Original-Received: from a1i15.kph.uni-mainz.de (localhost [127.0.0.1]) by a1i15.kph.uni-mainz.de (8.14.5/8.14.2) with ESMTP id q6EEm8cX017169; Sat, 14 Jul 2012 16:48:08 +0200 Original-Received: (from ulm@localhost) by a1i15.kph.uni-mainz.de (8.14.5/8.14.5/Submit) id q6EEm8wd017165; Sat, 14 Jul 2012 16:48:08 +0200 X-Mailer: VM 8.2.0b under 23.4.2 (x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 134.93.134.1 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:151613 Archived-At: I've noticed that with the current trunk, elint-defun will fail for any function that contains the "dolist" macro, with an error message: "Wrong type argument: listp, 385" The last form in the following minimal example: (load "cl-macs") (elint-initialize) (elint-get-args 'dolist nil) had returned "(spec &rest body)" in Emacs 24.1, whereas it now returns just "385". Is this a bug or a feature?