惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
U
Unit 42
B
Blog RSS Feed
博客园 - 【当耐特】
T
Tailwind CSS Blog
V
V2EX
S
SegmentFault 最新的问题
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
量子位
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
P
Proofpoint News Feed
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
A
About on SuperTechFans

elpa/gnu.git, branch externals/auctex

Release GNU AUCTeX 14.2.0 - elpa/gnu.git * latex.el (LaTeX-what-macro): Fix chars to skip backwards. - elpa/gnu.git * tex-ispell.el: Consolidate regexp for tabular environments. - elpa/gnu.git ; * latex.el (LaTeX-what-macro): Fix last change. - elpa/gnu.git * latex.el (LaTeX-what-macro): Improve macro recognition. - elpa/gnu.git Preserve `crm--choose-completion-string' - elpa/gnu.git - GNU ELPA Accept '-' as macro modifier - elpa/gnu.git Add new styles - elpa/gnu.git ; * tex-info.el (outline-heading-alist): Silence the compiler. - elpa/gnu.git Update style/simpleicons.el to package v16.29.0 - elpa/gnu.git Update NEWS.org for new preview feature - elpa/gnu.git Robustify check for escaped math switches/togglers - elpa/gnu.git Fix custom prompt with a default-value - elpa/gnu.git Fix prompt with a default-value - elpa/gnu.git Make `TeX-listify' an obsolete alias - elpa/gnu.git Fix 'syntax-propertize because of narrowing!' error - elpa/gnu.git Update style/ltx-talk.el to class v0.6.0 - elpa/gnu.git elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA Return context for RefTeX also for macros - elpa/gnu.git ; Fix last change - elpa/gnu.git Add in-buffer completion for citation keys - elpa/gnu.git ; Adjust Copyright years - elpa/gnu.git Improve query of the optional float placement - elpa/gnu.git Sort predefined environment hooks - elpa/gnu.git Sort predefined hooks - elpa/gnu.git Allow additional properties for in-buffer completion - elpa/gnu.git
; Fix description about `LaTeX-expl3-syntax-table' - elpa...
Arash Esbati · 2026-06-21 · via elpa/gnu.git, branch externals/auctex
authorArash Esbati <arash@gnu.org>2026-06-20 23:39:20 +0200
committerArash Esbati <arash@gnu.org>2026-06-20 23:39:20 +0200
commit8ca65a19cb1d6f6793b0234ef94ad1806365c581 (patch)
tree4673a6af45a596d5da13b7e54ec3440d2b04b5d5
parent3c3d2117854074b1add2d997c28a90a037c7dfb3 (diff)

; Fix description about `LaTeX-expl3-syntax-table'externals/auctex

* tests/latex/fontification-general.tex (subsubsection{AUC\protect\TeX{} fontification}): Fix explanation about `LaTeX-expl3-syntax-table'.

-rw-r--r--tests/latex/fontification-general.tex14

1 files changed, 7 insertions, 7 deletions

diff --git a/tests/latex/fontification-general.tex b/tests/latex/fontification-general.tex
index c864cd106be..b4e316eb80c 100644
--- a/tests/latex/fontification-general.tex
+++ b/tests/latex/fontification-general.tex

@@ -167,16 +167,16 @@ AUC\TeX{} provides a style file \verb|expl3.el| containing this code:

\begin{verbatim}

(defvar LaTeX-expl3-syntax-table

(let ((st (copy-syntax-table LaTeX-mode-syntax-table)))

- ;; Make _ and : symbol chars

- (modify-syntax-entry ?\_ "_" st)

- (modify-syntax-entry ?\: "_" st)

+ ;; Make _ and : word chars

+ (modify-syntax-entry ?\_ "w" st)

+ (modify-syntax-entry ?\: "w" st)

st))

\end{verbatim}

It changes the syntax for \verb|_| and \verb|:| from

-\textsl{punctuation} to \textsl{symbol}. For public functions

-mentioned above, this results in correct fontification in regular

-\verb|.tex| files. For private functions, \verb|font-latex.el|

-provides some code for doc\TeX{} mode to fontify them correctly.

+\textsl{punctuation} to \textsl{word}. For public functions mentioned

+above, this results in correct fontification in regular \verb|.tex|

+files. For private functions, \verb|font-latex.el| provides some code

+for doc\TeX{} mode to fontify them correctly.

\section{Math mode}