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

推荐订阅源

T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
博客园 - Franky
罗磊的独立博客
宝玉的分享
宝玉的分享
博客园_首页
腾讯CDC
The GitHub Blog
The GitHub Blog
D
DataBreaches.Net
IT之家
IT之家
D
Docker
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
V
V2EX
月光博客
月光博客
N
Netflix TechBlog - Medium
爱范儿
爱范儿
I
InfoQ
P
Proofpoint News Feed

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}