From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: gebser@ameritech.net Newsgroups: gmane.emacs.help Subject: Re: Per-File Auto fill mode? Date: Sun, 27 Apr 2003 09:58:36 -0400 (EDT) Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <87k7dhhaml.fsf@ID-87814.user.dfncis.de> Reply-To: gebser@ameritech.net NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1051451773 11843 80.91.224.249 (27 Apr 2003 13:56:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 27 Apr 2003 13:56:13 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Sun Apr 27 15:56:12 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 199mdX-00034t-00 for ; Sun, 27 Apr 2003 15:56:11 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 199mdQ-0003uh-00 for gnu-help-gnu-emacs@m.gmane.org; Sun, 27 Apr 2003 09:56:04 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 199mcg-00039y-00 for help-gnu-emacs@gnu.org; Sun, 27 Apr 2003 09:55:18 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 199mca-00035C-00 for help-gnu-emacs@gnu.org; Sun, 27 Apr 2003 09:55:13 -0400 Original-Received: from mailhost2-bcvloh.bcvloh.ameritech.net ([66.73.20.44] helo=mailhost.bcv2.ameritech.net) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 199mcN-0002oT-00 for help-gnu-emacs@gnu.org; Sun, 27 Apr 2003 09:54:59 -0400 Original-Received: from heidegger.mousecar.net ([65.43.214.212]) by mailhost.bcv2.ameritech.net (InterMail vM.4.01.02.17 201-229-119) with ESMTP <20030427135455.GPWJ17758.mailhost.bcv2.ameritech.net@heidegger.mousecar.net> for ; Sun, 27 Apr 2003 09:54:55 -0400 Original-Newsgroups: gnu.emacs.help Original-To: help-gnu-emacs@gnu.org In-Reply-To: <87k7dhhaml.fsf@ID-87814.user.dfncis.de> X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:8911 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8911 Thanks much, Oliver, I was just wondering how to do this very thing, so you've helped twice. However, I want to use outline mode and turn off auto-fill. I've got the first part, but not the second, i.e., % -*- mode: outline; auto-fill nil; -*- does put the buffer in outline mode, but I haven't been able to turn off auto-fill mode. Besides "nil", I've also tried "0" and "-1", neither of which turn off auto-fill. Using in its stead "fill-column: 10000;" works (I don't get automatic wrapping), but I was wondering if there was a cleaner solution. Thanks again, ken At 11:27 (UTC+0200) on Sat, 26 Apr 2003 Oliver Scholz said: = ticmanis@coli.uni-sb.de (Linards Ticmanis) writes: = = > Hi Group, = > = > When I type Greek text (polytonic) for LaTeX into emacs, I use the = > following first line to prevent the dumb autoformatting of quote marks = > that are used as accent marks for Greek and thus must be retained as = > typed in. = > = > % -*- Coding: iso-8859-7; mode: fundamental; -*- % = > = > While I'm at it can I turn on auto-fill in this line too? What do I = > have to write? (I don't want it for all files or even all = > "fundamental" files though.) = = Yes, specify `auto-fill' *after* the major mode: = = % -*- mode: fundamental; mode: auto-fill -*- = = ... = Oliver =