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: font-lock-comment-delimiter-face Date: Sun, 15 May 2005 11:59:20 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1116363227 3080 80.91.229.2 (17 May 2005 20:53:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 May 2005 20:53:47 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue May 17 22:53:36 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DY92V-0005DA-72 for ged-emacs-devel@m.gmane.org; Tue, 17 May 2005 22:51:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DY94n-0002Es-UF for ged-emacs-devel@m.gmane.org; Tue, 17 May 2005 16:54:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DXqsI-00069j-Or for emacs-devel@gnu.org; Mon, 16 May 2005 21:28:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DXYOO-0001dg-SV for emacs-devel@gnu.org; Mon, 16 May 2005 01:43:53 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DXLYJ-0004Bw-S0 for emacs-devel@gnu.org; Sun, 15 May 2005 12:01:16 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DXLe0-0007Gq-SG for emacs-devel@gnu.org; Sun, 15 May 2005 12:07:08 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DXLWS-0004pk-7E; Sun, 15 May 2005 11:59:20 -0400 Original-To: Ralf Angeli In-reply-to: (message from Ralf Angeli on Sat, 14 May 2005 18:11:40 +0200) 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:37189 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37189 In Lisp mode it fails to apply `font-lock-comment-delimiter-face' to a single ";" as long as it is not located at the start of a line. The cause is probably that `comment-start-skip' in Lisp mode contains precautions for not matching escaped semicolons: I fixed that. Thanks.