From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: bug#3688: Also need (auto-fill-mode nil) to trigger this bug Date: Mon, 29 Jun 2009 10:54:54 +0200 Message-ID: References: <200906261356.48352.kees.bakker@altium.nl> <20090626211431.GE4685@muc.de> <200906291001.56093.kees.bakker@altium.nl> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1246265719 11366 80.91.229.12 (29 Jun 2009 08:55:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Jun 2009 08:55:19 +0000 (UTC) Cc: emacs-devel@gnu.org To: Kees Bakker Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 29 10:55:12 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MLCdm-0008Ja-R0 for ged-emacs-devel@m.gmane.org; Mon, 29 Jun 2009 10:55:07 +0200 Original-Received: from localhost ([127.0.0.1]:60553 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLCdm-0001Rw-0C for ged-emacs-devel@m.gmane.org; Mon, 29 Jun 2009 04:55:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MLCdg-0001Qs-B6 for emacs-devel@gnu.org; Mon, 29 Jun 2009 04:55:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MLCdb-0001QH-QL for emacs-devel@gnu.org; Mon, 29 Jun 2009 04:54:59 -0400 Original-Received: from [199.232.76.173] (port=58403 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLCdb-0001QE-KL for emacs-devel@gnu.org; Mon, 29 Jun 2009 04:54:55 -0400 Original-Received: from smtp-02.vtx.ch ([212.147.0.114]:41150) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MLCdb-0005nA-7V for emacs-devel@gnu.org; Mon, 29 Jun 2009 04:54:55 -0400 Original-Received: from alfajor.home (dyn.83-228-190-143.dsl.vtx.ch [83.228.190.143]) by smtp-02.vtx.ch (VTX Services SA) with ESMTP id 69C7C5FEFA; Mon, 29 Jun 2009 10:54:54 +0200 (CEST) Original-Received: by alfajor.home (Postfix, from userid 20848) id 42CAA6433E; Mon, 29 Jun 2009 10:54:54 +0200 (CEST) In-Reply-To: <200906291001.56093.kees.bakker@altium.nl> (Kees Bakker's message of "Mon, 29 Jun 2009 10:01:55 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) 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:111807 Archived-At: > BTW. I never intended to enable auto-fill. But strangly enough the following > will _toggle_ auto-fill-mode. (I know, this function is "Toggle Auto Fill mode". > Besides a clear description to turn it on, it should also have a clear > description to turn it off.) > (auto-fill-mode nil) All minor modes are turned on with a positive arg and turned off with a negative arg. A nil argument may toggle it, but that might change in the future. A `toggle' argument toggles most (but not all) minor modes. Stefan