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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

elpa/gnu.git, branch externals/auctex

* 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 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 Use ConTeXt Mark XL instead of LMTX - elpa/gnu.git ; * tex.el (TeX-output-dir): Fix last change. - elpa/gnu.git * tex.el (TeX-output-dir): Fix docstring acc. to last change. - elpa/gnu.git ; * NEWS.org (Changed): Announce last change. - elpa/gnu.git Change default value of `ConTeXt-Mark-version' - elpa/gnu.git
Fix 'syntax-propertize because of narrowing!' error - elp...
Arash Esbati · 2026-08-28 · via elpa/gnu.git, branch externals/auctex
authorArash Esbati <arash@gnu.org>2026-08-28 08:53:53 +0200
committerArash Esbati <arash@gnu.org>2026-08-28 08:53:53 +0200
commiteeafe67a8865efa80505fd6ee4268007b41c4be1 (patch)
treebc62641ccc558f1142c38c98785dc73c8eb0fd85
parent04f246a03d4e475b1de391b8c267a7ebddd50ed1 (diff)

Fix 'syntax-propertize because of narrowing!' errorexternals/auctex

* tex.el (TeX-find-macro-boundaries): Syntax-propertize before narrowing. (Bug#81718)

-rw-r--r--tex.el3

1 files changed, 3 insertions, 0 deletions

diff --git a/tex.el b/tex.el
index 069b76c9f5c..9bbfefe3078 100644
--- a/tex.el
+++ b/tex.el

@@ -5827,6 +5827,9 @@ returns non-nil, then no further macro arguments are consumed."

;; environments including gathered similarly.

(save-restriction

(when lower-bound

+ ;; `syntax-propertize' can't widen so make sure it won't

+ ;; need to (bug#81718).

+ (syntax-propertize lower-bound)

(narrow-to-region lower-bound (point-max)))

(let ((orig-point (point))

start-point)