From unknown Fri Jun 20 07:19:45 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#6588 <6588@debbugs.gnu.org> To: bug#6588 <6588@debbugs.gnu.org> Subject: Status: 24.0.50; built-in Lisp functions look strange Reply-To: bug#6588 <6588@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:19:45 +0000 retitle 6588 24.0.50; built-in Lisp functions look strange reassign 6588 emacs submitter 6588 Katsumi Yamaoka severity 6588 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 08 22:03:13 2010 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'' From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 08 22:36:57 2010 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 To: Katsumi Yamaoka Subject: Re: bug#6588: 24.0.50; built-in Lisp functions look strange References: From: Dan Nicolaescu X-Debbugs-No-Ack: yes 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-Debbugs-Envelope-To: 6588 Cc: 6588@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: > 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 debbugs-submit-bounces@debbugs.gnu.org Thu Jul 08 23:18:46 2010 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 To: Dan Nicolaescu Subject: Re: bug#6588: 24.0.50; built-in Lisp functions look strange 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-Debbugs-Envelope-To: 6588 Cc: 6588@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: -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 debbugs-submit-bounces@debbugs.gnu.org Thu Jul 08 23:43:51 2010 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 From unknown Fri Jun 20 07:19:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 06 Aug 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator