From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Indentation of constants in LISP Date: Sun, 04 Feb 2007 19:23:02 -0500 Message-ID: References: <14692593.376141170595686836.JavaMail.www@wwinf4006> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1170635103 30835 80.91.229.12 (5 Feb 2007 00:25:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Feb 2007 00:25:03 +0000 (UTC) Cc: emacs-devel@gnu.org To: alinsoar@voila.fr Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 05 01:24:55 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 1HDrfC-00089y-Gx for ged-emacs-devel@m.gmane.org; Mon, 05 Feb 2007 01:24:54 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HDrfD-0002NO-Rg for ged-emacs-devel@m.gmane.org; Sun, 04 Feb 2007 19:24:55 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HDreU-00028z-BH for emacs-devel@gnu.org; Sun, 04 Feb 2007 19:24:10 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HDreT-00028f-O7 for emacs-devel@gnu.org; Sun, 04 Feb 2007 19:24:09 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HDreT-00028a-JN for emacs-devel@gnu.org; Sun, 04 Feb 2007 19:24:09 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HDreT-0004le-DS for emacs-devel@gnu.org; Sun, 04 Feb 2007 19:24:09 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1HDrdO-0002xo-SE; Sun, 04 Feb 2007 19:23:02 -0500 In-reply-to: <14692593.376141170595686836.JavaMail.www@wwinf4006> (message from A Soare on Sun, 4 Feb 2007 14:28:06 +0100 (CET)) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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:65873 Archived-At: In fact, it is not necessary to add (zerop (skip-syntax-backward "w_")), it is sufficient just to verify that (string (char-syntax ?\:)) is "_", because before the ":" there is or a space or a tab, which is from the " " syntax class, so (zerop (skip-syntax-backward "w_")) will always return 0. When you send a revised patch, please make this change too.