From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lute Kamstra Newsgroups: gmane.emacs.devel Subject: Re: lisp/generic.el patch. Date: Thu, 17 Mar 2005 17:39:17 +0100 Message-ID: <87vf7qns5m.fsf@xs4all.nl> References: <87y8co96uz.fsf@xs4all.nl> <873buup6yr.fsf@xs4all.nl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1111078971 7127 80.91.229.2 (17 Mar 2005 17:02:51 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 17 Mar 2005 17:02:51 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 17 18:02:50 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DByF8-0004RW-VK for ged-emacs-devel@m.gmane.org; Thu, 17 Mar 2005 17:53:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DByVS-0005pW-SN for ged-emacs-devel@m.gmane.org; Thu, 17 Mar 2005 12:09:58 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DByPS-0003rF-QL for emacs-devel@gnu.org; Thu, 17 Mar 2005 12:03:46 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DByMM-0002Z7-B5 for emacs-devel@gnu.org; Thu, 17 Mar 2005 12:00:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DByMK-0002RS-7t for emacs-devel@gnu.org; Thu, 17 Mar 2005 12:00:32 -0500 Original-Received: from [194.109.24.28] (helo=smtp-vbr8.xs4all.nl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DBy1s-0006Cd-2D for emacs-devel@gnu.org; Thu, 17 Mar 2005 11:39:24 -0500 Original-Received: from pijl (a80-127-67-124.adsl.xs4all.nl [80.127.67.124]) by smtp-vbr8.xs4all.nl (8.12.11/8.12.11) with ESMTP id j2HGdIs9024412 for ; Thu, 17 Mar 2005 17:39:23 +0100 (CET) (envelope-from Lute.Kamstra@xs4all.nl) Original-Received: from lute by pijl with local (Exim 3.36 #1 (Debian)) id 1DBy1m-0002Qm-00 for ; Thu, 17 Mar 2005 17:39:18 +0100 Original-To: emacs-devel@gnu.org In-Reply-To: <873buup6yr.fsf@xs4all.nl> (Lute Kamstra's message of "Thu, 17 Mar 2005 17:34:04 +0100") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Original-Lines: 36 X-Virus-Scanned: by XS4ALL Virus Scanner 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: news.gmane.org gmane.emacs.devel:34670 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34670 Lute Kamstra writes: > I changed define-generic-mode so that the name of the mode command > need not be quoted (while retaining backward compatibility). This > makes define-generic-mode more like other defining forms. I updated > the docstring of define-generic-mode to reflect this change. What about font-locking define-generic-mode like other defining forms? Lute. Index: lisp/font-lock.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/font-lock.el,v retrieving revision 1.233 diff -c -r1.233 font-lock.el *** lisp/font-lock.el 6 Mar 2005 00:02:04 -0000 1.233 --- lisp/font-lock.el 17 Mar 2005 16:35:54 -0000 *************** *** 1902,1908 **** ;; Function declarations. "\\(advice\\|varalias\\|alias\\|generic\\|macro\\*?\\|method\\|" "setf\\|subst\\*?\\|un\\*?\\|" ! "ine-\\(condition\\|\\(?:derived\\|minor\\)-mode\\|" "method-combination\\|setf-expander\\|skeleton\\|widget\\|" "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|" ;; Variable declarations. --- 1902,1908 ---- ;; Function declarations. "\\(advice\\|varalias\\|alias\\|generic\\|macro\\*?\\|method\\|" "setf\\|subst\\*?\\|un\\*?\\|" ! "ine-\\(condition\\|\\(?:derived\\|minor\\|generic\\)-mode\\|" "method-combination\\|setf-expander\\|skeleton\\|widget\\|" "function\\|\\(compiler\\|modify\\|symbol\\)-macro\\)\\)\\|" ;; Variable declarations.