From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Owens Newsgroups: gmane.emacs.devel Subject: Re: filladapt mode stops filling after lengthy amount of emacs uptime Date: Thu, 29 Mar 2007 17:13:25 +0000 (UTC) Message-ID: References: <87wt199vuk.fsf@stupidchicken.com> <87k5x0ujni.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1175188506 7834 80.91.229.12 (29 Mar 2007 17:15:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 29 Mar 2007 17:15:06 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Mar 29 19:14:59 2007 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 1HWyD6-0003rC-NQ for ged-emacs-devel@m.gmane.org; Thu, 29 Mar 2007 19:14:52 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HWyFh-0008MX-LI for ged-emacs-devel@m.gmane.org; Thu, 29 Mar 2007 12:17:33 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HWyFF-00071M-DP for emacs-devel@gnu.org; Thu, 29 Mar 2007 13:17:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HWyFD-0006uc-Dq for emacs-devel@gnu.org; Thu, 29 Mar 2007 13:17:04 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HWyFD-0006u7-8F for emacs-devel@gnu.org; Thu, 29 Mar 2007 12:17:03 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HWyCb-0005ep-Ei for emacs-devel@gnu.org; Thu, 29 Mar 2007 13:14:21 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1HWyC8-0004GF-Pz for emacs-devel@gnu.org; Thu, 29 Mar 2007 19:13:53 +0200 Original-Received: from movenpick.ece.ucdavis.edu ([169.237.74.164]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Mar 2007 19:13:52 +0200 Original-Received: from john_owens by movenpick.ece.ucdavis.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 29 Mar 2007 19:13:52 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 45 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: main.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 169.237.74.164 (Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3) X-detected-kernel: 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:68749 Archived-At: Chong Yidong stupidchicken.com> writes: > > John, could you check if your customizations, site-start files, and > third-party elisp packages set sentence-end or paragraph-start > anywhere, or if they contain this regexp? Thanks for the suggestion. I am definitely an elisp rookie, so forgive any mistakes here. In .emacs, I have (setq sentence-end-double-space nil) Don't think that's an issue. (That's used in filladapt.) In erc.el (an IRC client, I could totally get rid of this), I have (defun erc-mode () ... (make-variable-buffer-local 'paragraph-start) ... (setq paragraph-start (concat "\\(" (regexp-quote (erc-prompt)) "\\)")) but since I'm never in erc-mode, that probably isn't an issue either. More possibly the culprit is the MIME editing facility in SEMI, the MIME handling library (used in my mailer Wanderlust). In it: (defun turn-on-mime-edit () ... (setq paragraph-start (regexp-or mime-edit-single-part-tag-regexp paragraph-start)) Here's that regexp. (defconst mime-edit-single-part-tag-regexp "--[[][[]\\([^]]*\\)]\\([[]\\([^]]*\\)]\\|\\)]" "*Regexp of MIME tag in the form of [[CONTENT-TYPE][ENCODING]].") Does that seem like it might be the problem? (SEMI's problem?) Really, many thanks for all of your help in tracking this down. JDO