From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: martin rudalics Newsgroups: gmane.emacs.devel Subject: Re: Patch: Syntax and Hard Newlines Date: Thu, 16 Nov 2006 13:18:10 +0100 Message-ID: <455C5702.8060804@gmx.at> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163795007 2730 80.91.229.2 (17 Nov 2006 20:23:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 17 Nov 2006 20:23:27 +0000 (UTC) Cc: emacs-devel@gnu.org, rms@gnu.org, monnier@iro.umontreal.ca Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 17 21:23:24 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GlAEo-0005bP-TP for ged-emacs-devel@m.gmane.org; Fri, 17 Nov 2006 21:23:03 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GlAEo-0004ye-AC for ged-emacs-devel@m.gmane.org; Fri, 17 Nov 2006 15:23:02 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GlAEZ-0004wK-8W for emacs-devel@gnu.org; Fri, 17 Nov 2006 15:22:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GlAEW-0004rR-R6 for emacs-devel@gnu.org; Fri, 17 Nov 2006 15:22:46 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GlAEW-0004qk-AG for emacs-devel@gnu.org; Fri, 17 Nov 2006 15:22:44 -0500 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.52) id 1GlAEW-0000Oo-1h for emacs-devel@gnu.org; Fri, 17 Nov 2006 15:22:44 -0500 Original-Received: (qmail invoked by alias); 16 Nov 2006 12:16:03 -0000 Original-Received: from N875P016.adsl.highway.telekom.at (EHLO [62.47.53.80]) [62.47.53.80] by mail.gmx.net (mp038) with SMTP; 16 Nov 2006 13:16:03 +0100 X-Authenticated: #14592706 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en Original-To: Herbert Euler In-Reply-To: X-Y-GMX-Trusted: 0 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:62399 Archived-At: > No, `kill-local-variable' only makes a variable no longer have a > separate value in the current buffer. That's what I meant. For example, in cc-mode.el you have (when (boundp 'parse-sexp-lookup-properties) (make-local-variable 'parse-sexp-lookup-properties) (setq parse-sexp-lookup-properties t)) that is cc-mode makes a "separate value in the current buffer" and sets that locally to t. When you turn off longlines in that buffer you turn that off for cc-mode too. Or am I missing something?