This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  afd2691e569ea523383bdcb6ceb43ec4e24f1cca (commit)
      from  b89b8cdd44dcfb45bd644e4fb2a013fb0f201738 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit afd2691e569ea523383bdcb6ceb43ec4e24f1cca
Author: Arash Esbati <ar...@gnu.org>
Date:   Thu Feb 17 13:16:41 2022 +0100

    Update style/ltxdoc.el to class version 2.1d
    
    * style/ltxdoc.el ("ltxdoc"): Add '|' to `LaTeX-shortvrb-chars'
    before running the 'shortvrb' style hook.  Add missing symbols to
    the style hook incl. fontification.
    (LaTeX-ltxdoc-class-options): New variable.
    
    * tex-ispell.el (TeX-ispell-skip-cmds-list): Add one entry "cs".

diff --git a/style/ltxdoc.el b/style/ltxdoc.el
index 8c8bbc59..16c26e1f 100644
--- a/style/ltxdoc.el
+++ b/style/ltxdoc.el
@@ -1,6 +1,6 @@
 ;;; ltxdoc.el --- AUCTeX style for `ltxdoc.cls'  -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2004, 2020 Free Software Foundation, Inc.
+;; Copyright (C) 2004--2022 Free Software Foundation, Inc.
 
 ;; Author: Frank Küster <fr...@kuesterei.ch>
 ;; Maintainer: auctex-devel@gnu.org
@@ -25,19 +25,75 @@
 
 ;;; Commentary:
 
-;; This file adds support for `ltxdoc.cls'.
+;; This file adds support for `ltxdoc.cls' v2.1d, dated 2021/12/07.
 
 ;;; Code:
 
 (require 'tex)
 
+;; Silence the compiler:
+(declare-function font-latex-add-keywords
+                  "font-latex"
+                  (keywords class))
+(defvar LaTeX-article-class-options)
+
 (TeX-add-style-hook
  "ltxdoc"
  (lambda ()
-   (TeX-run-style-hooks "doc")
-   (TeX-run-style-hooks "ltx-base"))
+
+   ;; ltxdoc.cls loads shortvrb.sty and sets '|' as a shorthand.  We
+   ;; append it to a local version of `LaTeX-shortvrb-chars' before
+   ;; running the style hook for 'shortvrb' which is done inside
+   ;; 'doc.el':
+   (add-to-list (make-local-variable 'LaTeX-shortvrb-chars) ?| t)
+
+   (TeX-run-style-hooks "doc" "ltx-base" "article")
+
+   (TeX-add-symbols
+    '("cmd" TeX-arg-macro)
+    '("cs" (TeX-arg-eval completing-read
+                         (TeX-argument-prompt nil nil "Macro")
+                         (TeX-symbol-list)))
+    '("marg" "Mandatory argument")
+    '("oarg" "Optional argument")
+    '("parg" "Picture mode argument")
+
+    '("DocInclude"
+      (TeX-arg-eval
+       (lambda ()
+         (let ((file (file-relative-name
+                      (read-file-name
+                       "File to include: " nil nil nil nil
+                       (lambda (x)
+                         (or (file-directory-p x)
+                             (string-match "\\.\\(fdd\\|dtx\\)\\'" x))))
+                      (TeX-master-directory))))
+           (format "%s" file))))))
+
+   ;; Fontification
+   (when (and (featurep 'font-latex)
+              (eq TeX-install-font-lock 'font-latex-setup))
+     (font-latex-add-keywords '(("cmd"  "{")
+                                ("cs"   "{")
+                                ("marg" "{")
+                                ("oarg" "{")
+                                ("parg" "{"))
+                              'textual)
+     (font-latex-add-keywords '("DocInclude" "{")
+                              'reference)))
  TeX-dialect)
 
+(defvar LaTeX-ltxdoc-class-options
+  (progn
+    (TeX-load-style "article")
+    (append (remove "a5paper" LaTeX-article-class-options)
+            '("nocfg")))
+  "Class options for the ltxdoc class.
+All options are passed to article class, \"a5paper\" is disabled
+by ltxdoc.  Therefore it is also removed here.")
+
 ;; Local Variables:
 ;; coding: utf-8
 ;; End:
+
+;;; ltxdoc.el ends here
diff --git a/tex-ispell.el b/tex-ispell.el
index 5becea3c..ed1ca383 100644
--- a/tex-ispell.el
+++ b/tex-ispell.el
@@ -56,6 +56,7 @@
 ;; fontspec.sty
 ;; hyperref.sty
 ;; listings.sty
+;; ltxdoc.cls
 ;; ltxtable.sty
 ;; mdframed.sty
 ;; minted.sty
@@ -189,6 +190,8 @@
       ;; listings.sty
       ("lstinputlisting" . 1)
       ("lstset" . 1)
+      ;; ltxdoc.cls
+      ("cs" . 1)
       ;; ltxtable.sty
       ("LTXtable" . 2)
       ;; mdframed.sty

-----------------------------------------------------------------------

Summary of changes:
 style/ltxdoc.el | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++----
 tex-ispell.el   |  3 +++
 2 files changed, 63 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

_______________________________________________
auctex-diffs mailing list
auctex-di...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-diffs

Reply via email to