From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: auto-fill-mode and docstring Date: Mon, 13 Sep 2004 15:33:53 +0900 Organization: Emacsen advocacy group Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1095057295 20321 80.91.229.6 (13 Sep 2004 06:34:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 13 Sep 2004 06:34:55 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 13 08:34:46 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C6kQH-0002eL-00 for ; Mon, 13 Sep 2004 08:34:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C6kVn-0003rQ-Ht for ged-emacs-devel@m.gmane.org; Mon, 13 Sep 2004 02:40:27 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C6kVX-0003kL-IF for emacs-devel@gnu.org; Mon, 13 Sep 2004 02:40:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C6kVW-0003jK-Ac for emacs-devel@gnu.org; Mon, 13 Sep 2004 02:40:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C6kVW-0003jG-8I for emacs-devel@gnu.org; Mon, 13 Sep 2004 02:40:10 -0400 Original-Received: from [69.61.11.2] (helo=washington.hostforweb.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1C6kPc-0005LF-SH for emacs-devel@gnu.org; Mon, 13 Sep 2004 02:34:05 -0400 Original-Received: from localhost ([127.0.0.1]) by washington.hostforweb.net with asmtp (Exim 4.41) id 1C6kPd-0002ck-1W for emacs-devel@gnu.org; Mon, 13 Sep 2004 02:34:05 -0400 Original-To: emacs-devel@gnu.org X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:0wKsaXSsPhilYAISwwYdkJiIvYc= X-Hashcash: 0:040913:emacs-devel@gnu.org:9a65ef5d65bdfe4d X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:27065 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:27065 Hi, Recently, I rearranged docstrings in some ELisp files using auto-fill-mode and noticed it inserts undesired spaces in the beginning of lines. For instance, when I type space just after `jumps' in the following form (defun quick-brown-fox (jumps-over &optional the-lazy-dog) "The quich brown fox jumps over the lazy dog. The quich brown fox jumps over the lazy dog. The quich brown fox jumps , it is folded as follows: (defun quick-brown-fox (jumps-over &optional the-lazy-dog) "The quich brown fox jumps over the lazy dog. The quich brown fox jumps over the lazy dog. The quich brown fox jumps Is inserting fill-prefix there an intended behavior? I also noticed it can be avoided by setting adaptive-fill-mode as nil, and finished the work smoothly. In addition, emacs-lisp-docstring-fill-column doesn't seem to be effective when folding docstring lines. Is it right? Regards,