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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

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
elpa/gnu.git - GNU ELPA
Arash Esbati · 2026-05-09 · via elpa/gnu.git, branch externals/auctex
authorArash Esbati <arash@gnu.org>2026-05-08 21:29:27 +0200
committerArash Esbati <arash@gnu.org>2026-05-08 21:29:27 +0200
commitba3daad7892f2340227477d1f72ced2864f3cd3d (patch)
treefb561c7231abd418dd0db081f67a0feda5352c86
parent4dc9c8cc1d3672479665923bd0ae807839d3a64c (diff)

* style/contract.el ("contract"): Fix usage of \refParN.

-rw-r--r--style/contract.el14

1 files changed, 8 insertions, 6 deletions

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

@@ -1,6 +1,6 @@

;;; contract.el --- AUCTeX style for `contract.sty' (v0.91) -*- lexical-binding: t; -*-

-;; Copyright (C) 2024--2025 Free Software Foundation, Inc.

+;; Copyright (C) 2024--2026 Free Software Foundation, Inc.

;; Author: Arash Esbati <arash@gnu.org>

;; Maintainer: auctex-devel@gnu.org

@@ -32,9 +32,7 @@

(require 'latex)

;; Silence the compiler:

-(declare-function font-latex-add-keywords

- "font-latex"

- (keywords class))

+(declare-function font-latex-add-keywords "font-latex" (keywords class))

(defconst LaTeX-contract-clause-key-val

'(("dummy")

@@ -103,13 +101,17 @@

;; 5 Cross References

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

- "refPar" "refParL" "refParS" "refParN"

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

+ "refPar" "refParL" "refParS"

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

(dolist (mac macs)

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

+ (TeX-add-symbols

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

(when (and (featurep 'font-latex)

(eq TeX-install-font-lock 'font-latex-setup))

(font-latex-add-keywords (mapcar (lambda (x) (list x "{")) macs)

+ 'reference)

+ (font-latex-add-keywords '(("refParN" "[{"))

'reference)))

(LaTeX-paragraph-commands-add-locally '("Clause" "SubClause"))