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

推荐订阅源

Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
博客园 - 司徒正美
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
Vercel News
Vercel News
爱范儿
爱范儿
Last Week in AI
Last Week in AI
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
有赞技术团队
有赞技术团队
D
DataBreaches.Net
博客园_首页
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
V
V2EX
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理

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-06-24 · via elpa/gnu.git, branch externals/auctex

* style/l3doc.el (LaTeX-l3doc-class-options-list): Rename from `LaTeX-l3doc-class-options' containing updated key=value options. (LaTeX-l3doc-class-options): New function.

diff --git a/style/l3doc.el b/style/l3doc.el
index 9b30a5a45e2..7d3ef93db94 100644
--- a/style/l3doc.el
+++ b/style/l3doc.el

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

;;; l3doc.el --- AUCTeX style for `l3doc.cls' -*- lexical-binding: t; -*-

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

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

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

;; Maintainer: auctex-devel@gnu.org

@@ -24,7 +24,7 @@

;;; Commentary:

-;; This file adds support for `l3doc.cls' dated 2022/02/24.

+;; This file adds support for `l3doc.cls' dated 2026-06-18.

;;; Code:

@@ -238,14 +238,25 @@ For syntax environment from l3doc class."

'function)))

TeX-dialect)

-(defvar LaTeX-l3doc-class-options

+(defvar LaTeX-l3doc-class-options-list

(progn

(TeX-load-style "article")

- (append (remove "a5paper" LaTeX-article-class-options)

- '("full" "onlydoc" "check" "nocheck" "checktest"

- "nochecktest" "kernel" "stdmodule" "cm-default"

- "lm-default" "cs-break-off" "cs-break-nohyphen"

- "show-notes" "hide-notes")))

+ (append (mapcar #'list (remove "a5paper" LaTeX-article-class-options))

+ '(("full") ("onlydoc")

+ ("lm-default" ("true" "false"))

+ ("kernel" ("true" "false"))

+ ("check" ("true" "false"))

+ ("checktest" ("true" "false"))

+ ("stdmodule" ("true" "false"))

+ ("cs-break" ("true" "false"))

+ ("cs-break-nohyphen" ("true" "false"))

+ ("show-notes" ("true" "false"))

+ ("hide-notes" ("true" "false"))

+ ("base-date"))))

"Class options for the l3doc class.")

+(defun LaTeX-l3doc-class-options ()

+ "Read the l3doc class options from the user."

+ (TeX-read-key-val t LaTeX-l3doc-class-options-list))

+

;;; l3doc.el ends here