[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-devel] Re: Annoyance...
From: |
Ralf Angeli |
Subject: |
[AUCTeX-devel] Re: Annoyance... |
Date: |
Thu, 20 Apr 2006 20:42:49 +0200 |
* Ralf Angeli (2006-04-19) writes:
> * David Kastrup (2006-04-19) writes:
>
>> the basic thing is that
>> the tags are not dissected and wrapped around
>
> For starters we could add adequate regexps for the tags to
> `paragraph-start'. I have to look more deeply into the other
> requirements ...
Behavior after evaluating the following code is not perfect but should
be better than before.
(add-hook 'docTeX-mode-hook
(lambda ()
(setq paragraph-start (concat paragraph-start "\\|%<")
paragraph-separate (concat paragraph-separate "\\|%<")
TeX-comment-start-regexp "%\\(<[^>]+>\\)?")))
--
Ralf