From unknown Sun Jun 22 07:53:03 2025 X-Loop: help-debbugs@gnu.org Subject: bug#6588: 24.0.50; built-in Lisp functions look strange Resent-From: Katsumi Yamaoka Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 09 Jul 2010 02:04:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 6588 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 6588@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.127864099318490 (code B ref -1); Fri, 09 Jul 2010 02:04:02 +0000 Received: (at submit) by debbugs.gnu.org; 9 Jul 2010 02:03:13 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2vp-0004oB-4X for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:13 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2vm-0004o6-Ki for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:11 -0400 Received: from lists.gnu.org ([199.232.76.165]:48594) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OX2vj-0008PG-33 for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:07 -0400 Received: from [140.186.70.92] (port=46468 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OX2vh-0000Qu-Ka for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OX2ve-0000xn-Fv for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:05 -0400 Received: from orlando.hostforweb.net ([216.246.45.90]:36240) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2ve-0000xU-DY for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:02 -0400 Received: from localhost ([127.0.0.1]:58482) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1OX2vW-0007Gr-Tm for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 21:02:55 -0500 Date: Fri, 09 Jul 2010 11:02:54 +0900 Message-ID: From: Katsumi Yamaoka X-Hashcash: 1:20:100709:bug-gnu-emacs@gnu.org::lNk3lKMocsudCyTZ:00000000000000000000000000000000000000001QEe Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (gnu/linux) Cancel-Lock: sha1:Z9kA5hdvfBYqDgUw5fTUgGmQqYs= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.4 (-----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.4 (-----) Emacs head I built today looks strange; many built-in Lisp functions have `LISP-OBJECT' as the first argument. For example: ,---- | kill-buffer is an interactive built-in function in `C source code'. | | It is bound to C-x k. | | (kill-buffer &optional LISP-OBJECT BUFFER-OR-NAME) | | Kill buffer BUFFER-OR-NAME. | [...] `---- ,---- | raise-frame is an interactive built-in function in `C source code'. | | (raise-frame &optional LISP-OBJECT FRAME) | | Bring FRAME to the front, so it occludes any frames it overlaps. | [...] `---- This seems to be due to the recent change: Dan Nicolaescu wrote: > ------------------------------------------------------------ > revno: 100758 > committer: Dan Nicolaescu > branch nick: trunk > timestamp: Thu 2010-07-08 14:25:08 -0700 > message: > Convert DEFUNs to standard C. > * src/alloc.c: Convert DEFUNs to standard C. > * src/buffer.c: [...] > Diff too large for email (13107 lines, the limit is 10000). In GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2010-07-09 on ****** Windowing system distributor `Fedora Project', version 11.0.10802000 configured using `configure '--verbose' '--with-x-toolkit=lucid'\ '--without-xim'' From unknown Sun Jun 22 07:53:03 2025 X-Loop: help-debbugs@gnu.org Subject: bug#6588: 24.0.50; built-in Lisp functions look strange Resent-From: Dan Nicolaescu Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 09 Jul 2010 02:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 6588 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Katsumi Yamaoka Cc: 6588@debbugs.gnu.org Received: via spool by 6588-submit@debbugs.gnu.org id=B6588.127864301819343 (code B ref 6588); Fri, 09 Jul 2010 02:37:01 +0000 Received: (at 6588) by debbugs.gnu.org; 9 Jul 2010 02:36:58 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX3ST-00051w-FX for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:36:57 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX3SS-00051r-28 for 6588@debbugs.gnu.org; Thu, 08 Jul 2010 22:36:56 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OX3SO-00080d-HG; Thu, 08 Jul 2010 22:36:52 -0400 References: From: Dan Nicolaescu Date: Thu, 08 Jul 2010 22:36:52 -0400 In-Reply-To: (Katsumi Yamaoka's message of "Fri\, 09 Jul 2010 11\:02\:54 +0900") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.5 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.5 (------) Katsumi Yamaoka writes: > Emacs head I built today looks strange; many built-in Lisp functions > have `LISP-OBJECT' as the first argument. For example: Please update again. > > ,---- > | kill-buffer is an interactive built-in function in `C source code'. > | > | It is bound to C-x k. > | > | (kill-buffer &optional LISP-OBJECT BUFFER-OR-NAME) > | > | Kill buffer BUFFER-OR-NAME. > | [...] > `---- > > ,---- > | raise-frame is an interactive built-in function in `C source code'. > | > | (raise-frame &optional LISP-OBJECT FRAME) > | > | Bring FRAME to the front, so it occludes any frames it overlaps. > | [...] > `---- > > This seems to be due to the recent change: > > Dan Nicolaescu wrote: >> ------------------------------------------------------------ >> revno: 100758 >> committer: Dan Nicolaescu >> branch nick: trunk >> timestamp: Thu 2010-07-08 14:25:08 -0700 >> message: >> Convert DEFUNs to standard C. >> * src/alloc.c: Convert DEFUNs to standard C. >> * src/buffer.c: > [...] >> Diff too large for email (13107 lines, the limit is 10000). > > In GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) > of 2010-07-09 on ****** > Windowing system distributor `Fedora Project', version 11.0.10802000 > configured using `configure '--verbose' '--with-x-toolkit=lucid'\ > '--without-xim'' From unknown Sun Jun 22 07:53:03 2025 X-Loop: help-debbugs@gnu.org Subject: bug#6588: 24.0.50; built-in Lisp functions look strange In-Reply-To: Resent-From: Katsumi Yamaoka Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 09 Jul 2010 03:19:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 6588 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Dan Nicolaescu Cc: 6588@debbugs.gnu.org Received: via spool by 6588-submit@debbugs.gnu.org id=B6588.127864552620443 (code B ref 6588); Fri, 09 Jul 2010 03:19:01 +0000 Received: (at 6588) by debbugs.gnu.org; 9 Jul 2010 03:18:46 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX46w-0005Jg-3l for submit@debbugs.gnu.org; Thu, 08 Jul 2010 23:18:46 -0400 Received: from orlando.hostforweb.net ([216.246.45.90]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX46u-0005Ja-15 for 6588@debbugs.gnu.org; Thu, 08 Jul 2010 23:18:44 -0400 Received: from localhost ([127.0.0.1]:48789) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1OX46l-0005Qk-Po; Thu, 08 Jul 2010 22:18:36 -0500 Date: Fri, 09 Jul 2010 12:18:34 +0900 Message-ID: From: Katsumi Yamaoka References: X-Hashcash: 1:20:100709:dann@gnu.org::zEnrspE2l0K2VMcX:000002IFB X-Hashcash: 1:20:100709:6588@debbugs.gnu.org::iRSqlIPprZhfeP+J:00000000000000000000000000000000000000000015w Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:3g12V+i65kgEsjYCZSQ41lfXkXk= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - debbugs.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -3.5 (---) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.4 (---) Dan Nicolaescu wrote: > Katsumi Yamaoka writes: >> Emacs head I built today looks strange; many built-in Lisp functions >> have `LISP-OBJECT' as the first argument. For example: > Please update again. I verified it's been solved. Thanks. And sorry for the noise. This thread should be closed. From unknown Sun Jun 22 07:53:03 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Katsumi Yamaoka Subject: bug#6588: closed (Re: bug#6588: 24.0.50; built-in Lisp functions look strange) Message-ID: References: X-Gnu-PR-Message: they-closed 6588 X-Gnu-PR-Package: emacs Reply-To: 6588@debbugs.gnu.org Date: Fri, 09 Jul 2010 03:44:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1278647042-21034-1" This is a multi-part message in MIME format... ------------=_1278647042-21034-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #6588: 24.0.50; built-in Lisp functions look strange which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 6588@debbugs.gnu.org. --=20 6588: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D6588 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1278647042-21034-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 6588-done) by debbugs.gnu.org; 9 Jul 2010 03:43:51 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX4VD-0005T3-Af for submit@debbugs.gnu.org; Thu, 08 Jul 2010 23:43:51 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX4VB-0005Sy-2R for 6588-done@debbugs.gnu.org; Thu, 08 Jul 2010 23:43:49 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OX4V7-0002PF-4F; Thu, 08 Jul 2010 23:43:45 -0400 To: Katsumi Yamaoka Subject: Re: bug#6588: 24.0.50; built-in Lisp functions look strange References: From: Dan Nicolaescu Date: Thu, 08 Jul 2010 23:43:45 -0400 In-Reply-To: (Katsumi Yamaoka's message of "Fri\, 09 Jul 2010 12\:18\:34 +0900") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.5 (------) X-Debbugs-Envelope-To: 6588-done Cc: 6588-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.5 (------) Katsumi Yamaoka writes: > This thread should be closed. You can do that by emailing BUGNUMBER-done@debbugs.gnu.org ------------=_1278647042-21034-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 9 Jul 2010 02:03:13 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2vp-0004oB-4X for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:13 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2vm-0004o6-Ki for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:11 -0400 Received: from lists.gnu.org ([199.232.76.165]:48594) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OX2vj-0008PG-33 for submit@debbugs.gnu.org; Thu, 08 Jul 2010 22:03:07 -0400 Received: from [140.186.70.92] (port=46468 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OX2vh-0000Qu-Ka for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OX2ve-0000xn-Fv for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:05 -0400 Received: from orlando.hostforweb.net ([216.246.45.90]:36240) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OX2ve-0000xU-DY for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 22:03:02 -0400 Received: from localhost ([127.0.0.1]:58482) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1OX2vW-0007Gr-Tm for bug-gnu-emacs@gnu.org; Thu, 08 Jul 2010 21:02:55 -0500 Date: Fri, 09 Jul 2010 11:02:54 +0900 Message-ID: From: Katsumi Yamaoka To: bug-gnu-emacs@gnu.org Subject: 24.0.50; built-in Lisp functions look strange X-Hashcash: 1:20:100709:bug-gnu-emacs@gnu.org::lNk3lKMocsudCyTZ:00000000000000000000000000000000000000001QEe Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (gnu/linux) Cancel-Lock: sha1:Z9kA5hdvfBYqDgUw5fTUgGmQqYs= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -5.4 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.4 (-----) Emacs head I built today looks strange; many built-in Lisp functions have `LISP-OBJECT' as the first argument. For example: ,---- | kill-buffer is an interactive built-in function in `C source code'. | | It is bound to C-x k. | | (kill-buffer &optional LISP-OBJECT BUFFER-OR-NAME) | | Kill buffer BUFFER-OR-NAME. | [...] `---- ,---- | raise-frame is an interactive built-in function in `C source code'. | | (raise-frame &optional LISP-OBJECT FRAME) | | Bring FRAME to the front, so it occludes any frames it overlaps. | [...] `---- This seems to be due to the recent change: Dan Nicolaescu wrote: > ------------------------------------------------------------ > revno: 100758 > committer: Dan Nicolaescu > branch nick: trunk > timestamp: Thu 2010-07-08 14:25:08 -0700 > message: > Convert DEFUNs to standard C. > * src/alloc.c: Convert DEFUNs to standard C. > * src/buffer.c: [...] > Diff too large for email (13107 lines, the limit is 10000). In GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2010-07-09 on ****** Windowing system distributor `Fedora Project', version 11.0.10802000 configured using `configure '--verbose' '--with-x-toolkit=lucid'\ '--without-xim'' ------------=_1278647042-21034-1--