From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.devel Subject: this is a bug? Date: Thu, 22 Mar 2007 17:43:12 +0100 (CET) Message-ID: <14079488.240671174581792652.JavaMail.www@wwinf4103> Reply-To: alinsoar@voila.fr NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1174581837 22441 80.91.229.12 (22 Mar 2007 16:43:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2007 16:43:57 +0000 (UTC) To: "Emacs Dev [emacs-devel]" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 22 17:43:49 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HUQOD-0003CK-7y for ged-emacs-devel@m.gmane.org; Thu, 22 Mar 2007 17:43:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUQQ1-0005ic-1O for ged-emacs-devel@m.gmane.org; Thu, 22 Mar 2007 11:45:41 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HUQPU-0005W5-AP for emacs-devel@gnu.org; Thu, 22 Mar 2007 12:45:08 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HUQPS-0005UZ-NL for emacs-devel@gnu.org; Thu, 22 Mar 2007 12:45:07 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUQPS-0005UU-EW for emacs-devel@gnu.org; Thu, 22 Mar 2007 11:45:06 -0500 Original-Received: from smtp2.voila.fr ([193.252.22.175] helo=smtp1.voila.fr) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HUQNd-0001Ce-NZ for emacs-devel@gnu.org; Thu, 22 Mar 2007 12:43:13 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4109.voila.fr (SMTP Server) with ESMTP id B4DA11C00283 for ; Thu, 22 Mar 2007 17:43:12 +0100 (CET) Original-Received: from wwinf4103 (wwinf4103 [172.22.152.30]) by mwinf4109.voila.fr (SMTP Server) with ESMTP id A4EF71C00362 for ; Thu, 22 Mar 2007 17:43:12 +0100 (CET) X-ME-UUID: 20070322164312675.A4EF71C00362@mwinf4109.voila.fr X-Originating-IP: [89.34.170.37] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:68308 Archived-At: enum Lisp_Type { /* Integer. XINT (obj) is the integer value. */ Lisp_Int, /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */ Lisp_Symbol, /* Miscellaneous. XMISC (object) points to a union Lisp_Misc, whose first member indicates the subtype. */ Lisp_Misc, /* String. XSTRING (object) points to a struct Lisp_String. The length of the string, and its contents, are stored therein. */ Lisp_String, /* Vector of Lisp objects, or something resembling it. XVECTOR (object) points to a struct Lisp_Vector, which contains the size and contents. The size field also contains the type information, if it's not a real vector object. */ Lisp_Vectorlike, /* Cons. XCONS (object) points to a struct Lisp_Cons. */ Lisp_Cons, Lisp_Float, /* This is not a type code. It is for range checking. */ Lisp_Type_Limit }; Here is a strange bug that I met 1000 times so far. 1. emacs -q then, visiting the tags table of emacs, go to the upper listed symbol. The first 4 members of this enum are listed in yellow color to me . The las= t 4 members in black color . This is normal? Or this is a bug? PS: I report little bugs and you learn me emacs lisp en =C3=A9change.