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

推荐订阅源

N
News and Events Feed by Topic
WordPress大学
WordPress大学
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
小众软件
小众软件
L
LangChain Blog
雷峰网
雷峰网
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Tor Project blog
NISL@THU
NISL@THU
Scott Helme
Scott Helme
量子位
S
Security Affairs
T
Threat Research - Cisco Blogs
博客园_首页
云风的 BLOG
云风的 BLOG
D
Docker
AWS News Blog
AWS News Blog
腾讯CDC
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
U
Unit 42
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
T
The Exploit Database - CXSecurity.com
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
LINUX DO - 热门话题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Last Watchdog
The Last Watchdog
C
Cybersecurity and Infrastructure Security Agency CISA
IT之家
IT之家
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
F
Full Disclosure
L
Lohrmann on Cybersecurity
The Hacker News
The Hacker News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Y
Y Combinator Blog
S
Security @ Cisco Blogs
C
Cyber Attacks, Cyber Crime and Cyber Security
C
Check Point Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
N
News and Events Feed by Topic
PCI Perspectives
PCI Perspectives
I
InfoQ

elpa/gnu.git, branch externals/auctex

* doc/auctex.texi (Folding): Shorten the code example. Add new style/handstroke.el Fix 'syntax-propertize because of narrowing!' error - elpa/gnu.git elpa/gnu.git - GNU ELPA Activate new xref backend - elpa/gnu.git elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA Delete compat function `TeX-always' - elpa/gnu.git Fix fontification of verb macros followed by space - elpa/gnu.git elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA Add new style/lineno.el - elpa/gnu.git Record workaround for autonum previews - elpa/gnu.git elpa/gnu.git - GNU ELPA Update style/eso-pic.el to package v3.0e ; * style/contract.el ("contract"): Speed up the additions. - elpa/gnu.git ; * style/contract.el ("contract"): Speed up the additions. ; * doc/faq.texi: Provide a more accessible Lisp form. (Bug#81034) - elpa/gnu.git ; * doc/faq.texi: Provide a more accessible Lisp form. (Bug#81034) ; * style/expl3.el (TeX-arg-expl3-macro): Fix docstring. - elpa/gnu.git ; * style/expl3.el (TeX-arg-expl3-macro): Fix docstring. Update style/simpleicons.el to package v16.17.0 - elpa/gnu.git Update style/simpleicons.el to package v16.17.0 elpa/gnu.git - GNU ELPA * style/contract.el ("contract"): Fix usage of \refParN. Improve matching of header end/trailer start in ConTeXt - elpa/gnu.git Improve matching of header end/trailer start in ConTeXt elpa/gnu.git - GNU ELPA Improve style/standalone.el elpa/gnu.git - GNU ELPA Update style/lua-unicode-math.el to package v0.8 Update style/babel.el to package v26.4 - elpa/gnu.git * style/babel-german.el ("babel-german"): Add missing macros. - elpa/gnu.git Update style/simpleicons.el to package v16.12.0 - elpa/gnu.git elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA elpa/gnu.git - GNU ELPA Add compatibility shim for obsolete preview option
; Fix description about `LaTeX-expl3-syntax-table' - elpa/gnu.git
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}