emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auctex ee9e8a2b6e 11/76: Move `TeX-TikZ-point-name-rege


From: Tassilo Horn
Subject: [elpa] externals/auctex ee9e8a2b6e 11/76: Move `TeX-TikZ-point-name-regexp' to tex-style.el
Date: Fri, 13 Jan 2023 14:30:44 -0500 (EST)

branch: externals/auctex
commit ee9e8a2b6ef5677f7739e8dd19a31563520e93d3
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Commit: Ikumi Keita <ikumi@ikumi.que.jp>

    Move `TeX-TikZ-point-name-regexp' to tex-style.el
    
    * tex-style.el:
    * style/tikz.el (TeX-TikZ-point-function-map):
    Move defcustom into tex-style.el.
    (AUCTeX-TikZ): Delete group.
---
 style/tikz.el | 10 ----------
 tex-style.el  |  7 +++++++
 2 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/style/tikz.el b/style/tikz.el
index b812346851..e97a5fb6e8 100644
--- a/style/tikz.el
+++ b/style/tikz.el
@@ -39,16 +39,6 @@
 (declare-function ConTeXt-insert-environment "context"
                   (environment &optional extra))
 
-(defgroup AUCTeX-TikZ nil
-  "AUCTeX TikZ support"
-  :group 'AUCTeX)
-
-(defcustom TeX-TikZ-point-name-regexp
-  "(\\([A-Za-z0-9]+\\))"
-  "A regexp that matches TikZ names."
-  :type 'regexp
-  :group 'AUCTeX-TikZ)
-
 (defconst TeX-TikZ-point-function-map
   '(("Rect Point" TeX-TikZ-arg-rect-point)
     ("Polar Point" TeX-TikZ-arg-polar-point)
diff --git a/tex-style.el b/tex-style.el
index b880bfcc25..d273ea082b 100644
--- a/tex-style.el
+++ b/tex-style.el
@@ -411,6 +411,13 @@ must be unique.  It is initialized to ?s when added to
 `reftex-index-macros'."
   :type 'character)
 
+;; style/tikz.el
+
+(defcustom TeX-TikZ-point-name-regexp
+  "(\\([A-Za-z0-9]+\\))"
+  "A regexp that matches TikZ names."
+  :type 'regexp)
+
 ;; Don't look for file-local variables before this line, so that the
 ;; example in the docstring of `LaTeX-shortvrb-chars' isn't picked up.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]