From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.bugs Subject: Re: can't turn off font-lock Date: Sun, 12 Aug 2007 13:56:09 -0400 Message-ID: References: <200708112124.l7BLOgG19369@f7.net> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1186941246 17460 80.91.229.12 (12 Aug 2007 17:54:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 12 Aug 2007 17:54:06 +0000 (UTC) Cc: bug-emacs@gnu.org, karl@freefriends.org To: Eli Zaretskii Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Aug 12 19:54:05 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IKHdb-0004gs-Dx for geb-bug-gnu-emacs@m.gmane.org; Sun, 12 Aug 2007 19:54:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IKHdb-0004gE-3X for geb-bug-gnu-emacs@m.gmane.org; Sun, 12 Aug 2007 13:54:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IKHcT-0003xU-1C for bug-gnu-emacs@gnu.org; Sun, 12 Aug 2007 13:52:53 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IKHcQ-0003vP-W7 for bug-gnu-emacs@gnu.org; Sun, 12 Aug 2007 13:52:52 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IKHcQ-0003v5-JR for bug-gnu-emacs@gnu.org; Sun, 12 Aug 2007 13:52:50 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IKHcQ-0004co-8g for bug-gnu-emacs@gnu.org; Sun, 12 Aug 2007 13:52:50 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1IKHfd-0004NL-TX; Sun, 12 Aug 2007 13:56:09 -0400 In-reply-to: (message from Eli Zaretskii on Sun, 12 Aug 2007 06:22:14 +0300) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16328 Archived-At: That's not fontification, those are faces set by other features. If you place the cursor on one of the characters you think are fontified, and type "C-u C-x =", Emacs will show you the face's name: you will see that those are not font-lock faces. When modes set up faces manually, they are supposed to set a `font-lock-face' property rather than `face'. That way, Font Lock mode controls whether those faces actually appear on the screen. If one of these modes fails to do that, we should change it.