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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
罗磊的独立博客
Last Week in AI
Last Week in AI
爱范儿
爱范儿
The Cloudflare Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
IT之家
IT之家
博客园 - 【当耐特】
雷峰网
雷峰网
博客园_首页
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
量子位
V
V2EX

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
; * style/contract.el ("contract"): Speed up the addition...
Arash Esbati · 2026-05-25 · via elpa/gnu.git, branch externals/auctex
authorArash Esbati <arash@gnu.org>2026-05-25 12:54:51 +0200
committerArash Esbati <arash@gnu.org>2026-05-25 12:54:51 +0200
commit95a5ec7fca542e10b195e52ab19049f841bc6693 (patch)
treef428d810e526f6a1eb4d8fc5f9890d2e9532356e
parentb5c4f3d4f8b3d1164376d86d79e7ceedb167c2e4 (diff)

; * style/contract.el ("contract"): Speed up the additions.

-rw-r--r--style/contract.el4

1 files changed, 2 insertions, 2 deletions

diff --git a/style/contract.el b/style/contract.el
index c8aa3a32ca3..eef780a280b 100644
--- a/style/contract.el
+++ b/style/contract.el

@@ -103,8 +103,8 @@

(let ((macs '("refL" "refS" "refN" "refClause" "refClauseN"

"refPar" "refParL" "refParS"

"refSentence" "refSentenceL" "refSentenceS" "refSentenceN")))

- (dolist (mac macs)

- (TeX-add-symbols `(,mac TeX-arg-ref)))

+ (apply #'TeX-add-symbols

+ (mapcar (lambda (x) (list x 'TeX-arg-ref)) macs))

(TeX-add-symbols

'("refParN" [TeX-arg-completing-read ("arabic" "roman")] TeX-arg-ref))

(when (and (featurep 'font-latex)