[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: filladapt mode stops filling after lengthy amount of emacs uptime
From: |
John Owens |
Subject: |
Re: filladapt mode stops filling after lengthy amount of emacs uptime |
Date: |
Thu, 29 Mar 2007 17:13:25 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Chong Yidong <cyd <at> 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
- filladapt mode stops filling after lengthy amount of emacs uptime, John Owens, 2007/03/22
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Chong Yidong, 2007/03/22
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, John Owens, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Stefan Monnier, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Chong Yidong, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime,
John Owens <=
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Davis Herring, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Chong Yidong, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Stefan Monnier, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Andreas Schwab, 2007/03/30
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Stefan Monnier, 2007/03/30
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Michael Olson, 2007/03/31
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Davis Herring, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Richard Stallman, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, Davis Herring, 2007/03/29
- Re: filladapt mode stops filling after lengthy amount of emacs uptime, David Kastrup, 2007/03/29