[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex 6d3ecf3 5/8: Don't treat comments with whitespac
From: |
Tassilo Horn |
Subject: |
[elpa] externals/auctex 6d3ecf3 5/8: Don't treat comments with whitespace before % as code comments |
Date: |
Sun, 25 Apr 2021 15:22:51 -0400 (EDT) |
branch: externals/auctex
commit 6d3ecf343257ac44edc577d9d6677d07815eabe8
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>
Don't treat comments with whitespace before % as code comments
* latex.el (LaTeX-fill-region-as-paragraph): Don't treat comments with
whitespace before % as code comments (mentioned as addendum to
bug#47757).
---
latex.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/latex.el b/latex.el
index 3330037..beaa0dd 100644
--- a/latex.el
+++ b/latex.el
@@ -3783,7 +3783,7 @@ performed in that case."
(if (re-search-forward
(concat "\\("
;; Code comments.
- "[^\r\n%\\]\\([ \t]\\|\\\\\\\\\\)*"
+ "[^ \r\n%\\]\\([ \t]\\|\\\\\\\\\\)*"
TeX-comment-start-regexp
"\\|"
;; Lines ending with `\par'.
- [elpa] externals/auctex updated (0383415 -> 3c4c78b), Tassilo Horn, 2021/04/25
- [elpa] externals/auctex b641204 1/8: Improve handling for parentheses with electric-pair-mode (bug#47936), Tassilo Horn, 2021/04/25
- [elpa] externals/auctex d1d99ae 2/8: Get rid of unexpected side effects, Tassilo Horn, 2021/04/25
- [elpa] externals/auctex 93363d3 3/8: Follow up previous commit, Tassilo Horn, 2021/04/25
- [elpa] externals/auctex 3d813cd 4/8: Add new test, Tassilo Horn, 2021/04/25
- [elpa] externals/auctex 98455d0 6/8: Give explicit arg to LaTeX-back-to-indentation in filling functions., Tassilo Horn, 2021/04/25
- [elpa] externals/auctex 6d3ecf3 5/8: Don't treat comments with whitespace before % as code comments,
Tassilo Horn <=
- [elpa] externals/auctex 40b9319 7/8: Fix matching of script chars (bug#48012), Tassilo Horn, 2021/04/25
- [elpa] externals/auctex 3c4c78b 8/8: Merge remote-tracking branch 'origin/master' into externals/auctex, Tassilo Horn, 2021/04/25