From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ralf Angeli Newsgroups: gmane.emacs.devel Subject: Re: font-lock-comment-delimiter-face Date: Sun, 15 May 2005 19:34:18 +0200 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1116361625 29515 80.91.229.2 (17 May 2005 20:27:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 May 2005 20:27:05 +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:26:54 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DY8bD-0000iX-EX for ged-emacs-devel@m.gmane.org; Tue, 17 May 2005 22:23:31 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DY8dV-0005y2-Oz for ged-emacs-devel@m.gmane.org; Tue, 17 May 2005 16:25:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DXifo-0004bv-UQ for emacs-devel@gnu.org; Mon, 16 May 2005 12:42:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DXS57-0004Bq-Ui for emacs-devel@gnu.org; Sun, 15 May 2005 18:59:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DXOld-0006DX-Fg for emacs-devel@gnu.org; Sun, 15 May 2005 15:27:13 -0400 Original-Received: from [199.232.41.67] (helo=mx20.gnu.org) by monty-python.gnu.org with esmtp (TLS-1.0:RSA_ARCFOUR_SHA:16) (Exim 4.34) id 1DXNn2-0006qd-94; Sun, 15 May 2005 14:24:36 -0400 Original-Received: from [134.96.7.25] (helo=triton.rz.uni-saarland.de) by mx20.gnu.org with esmtp (Exim 4.34) id 1DXN0k-00081l-J7; Sun, 15 May 2005 13:34:42 -0400 Original-Received: from iwi-gate.iwi.uni-sb.de (iwi-gate.iwi.uni-sb.de [134.96.72.13]) by triton.rz.uni-saarland.de (8.12.10/8.12.10) with ESMTP id j4FHYUQw2852510; Sun, 15 May 2005 19:34:30 +0200 (CEST) Original-Received: from [134.96.72.190] (helo=neutrino.iwi.uni-sb.de) by iwi-gate.iwi.uni-sb.de with esmtp (Exim 4.43 (FreeBSD)) id 1DXN0N-000Au0-FN; Sun, 15 May 2005 19:34:19 +0200 Original-Received: from angeli by neutrino.iwi.uni-sb.de with local (Exim 4.50) id 1DXN0M-0002Pe-Od; Sun, 15 May 2005 19:34:18 +0200 Original-To: rms@gnu.org In-Reply-To: (Richard Stallman's message of "Sun, 15 May 2005 11:59:20 -0400") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) X-IWi-MailScanner-Information: Please contact the ISP for more information X-IWi-MailScanner: Found to be clean X-IWi-MailScanner-SpamCheck: not spam, SpamAssassin (score=1.122, required 5, autolearn=disabled, SUBJ_HAS_UNIQ_ID 1.12) X-IWi-MailScanner-SpamScore: s X-MailScanner-From: angeli@iwi.uni-sb.de X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.1 (triton.rz.uni-saarland.de [134.96.7.25]); Sun, 15 May 2005 19:34:30 +0200 (CEST) X-AntiVirus: checked by AntiVir Milter 1.0.6; AVE 6.30.0.12; VDF 6.30.0.177 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:37188 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37188 * Richard Stallman (2005-05-15) writes: > 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. As your fix does not concern regular expression matching, does this mean it is correct for `(looking-at comment-start-skip)' in Lisp mode to return different values in case of single and multiple semicolons? That's what I was actually more concerned about. -- Ralf