Hello
Some important information
I have the following non-standard setting
(defadvice LaTeX-fill-region-as-paragraph (around LaTeX-sentence-filling)
"Start each sentence on a new line."
(let ((from (ad-get-arg 0))
(to-marker (set-marker (make-marker) (ad-get-arg 1)))
tmp-end)
(while (< from (marker-position to-marker))
(forward-sentence)
;; might have gone beyond to-marker---use whichever is smaller:
(ad-set-arg 1 (setq tmp-end (min (point) (marker-position to-marker))))
ad-do-it
(ad-set-arg 0 (setq from (point)))
(unless (or (looking-back "^\\s *")
(looking-at "\\s *$"))
(LaTeX-newline)))
(set-marker to-marker nil)))
(ad-activate 'LaTeX-fill-region-as-paragraph)
Rationale: this function (found in
http://pleasefindattached.blogspot.com.es/2011/12/emacsauctex-sentence-fill-greatly.html)
is written to make it easier to use version-control tools for Latex
file.
This function is however the source of the problems I reported in my bug
report and removing it solves the problem reported. So the bug should be
closed. Sorry for the noise.
Uwe Brauer
_______________________________________________
bug-auctex mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-auctex