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: trivial bug of font-lock in Change Log mode. Date: Fri, 27 May 2005 10:20:20 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1117204271 10752 80.91.229.2 (27 May 2005 14:31:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 27 May 2005 14:31:11 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri May 27 16:31:08 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DbfpR-0005mo-Og for ged-emacs-devel@m.gmane.org; Fri, 27 May 2005 16:28:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dbftj-0003PQ-GW for ged-emacs-devel@m.gmane.org; Fri, 27 May 2005 10:33:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DbfoK-0001s5-UC for emacs-devel@gnu.org; Fri, 27 May 2005 10:27:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DbfoF-0001oe-Lm for emacs-devel@gnu.org; Fri, 27 May 2005 10:27:37 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DbfoD-0001mj-Th for emacs-devel@gnu.org; Fri, 27 May 2005 10:27:33 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DbfiV-00024e-KV for emacs-devel@gnu.org; Fri, 27 May 2005 10:21:39 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DbfhE-0004ZY-JC; Fri, 27 May 2005 10:20:20 -0400 Original-To: Kenichi Handa In-reply-to: (message from Kenichi Handa on Fri, 27 May 2005 09:32:40 +0900) 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:37774 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37774 > ;; Date lines, new and old styles. > ! ("^\\([1-9][0-9][0-9][0-9]-[0-9-]+\\|\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\) \\sw\\sw\\sw\\)[0-9:+ ]*" > (0 'change-log-date-face) > Shouldn't that regexp end with + rather than *? The original regexp also ended with '*', and I don't know all the variations of date line. It seems to me that it could not be a valid date if that match is empty. Don't you think so?