auctex-diffs
[Top][All Lists]
Advanced

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

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 2e968b6af3569eb43094c


From: Arash Esbati
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 2e968b6af3569eb43094c951d876233a757984f9
Date: Tue, 9 Nov 2021 03:47:32 -0500 (EST)

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  2e968b6af3569eb43094c951d876233a757984f9 (commit)
      from  c457aab9f4775620e404f5d0704bc060b6466f82 (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 2e968b6af3569eb43094c951d876233a757984f9
Author: Arash Esbati <arash@gnu.org>
Date:   Tue Nov 9 09:46:59 2021 +0100

    ; Fix escapings
    
    * style/acro.el (LaTeX-acro-declareacronym-keys)
    (LaTeX-acro-printacronyms-keys):
    * style/booktabs.el (LaTeX-booktabs-arg-paren):
    * style/theorem.el (LaTeX-theorem-fontdecl)
    (LaTeX-arg-theorem-fontdecl): Fix escaping of characters.

diff --git a/style/acro.el b/style/acro.el
index 6d80642..56291a1 100644
--- a/style/acro.el
+++ b/style/acro.el
@@ -141,12 +141,12 @@ string."
     ("alt-indefinite") ("extra") ("sort") ("class") ("cite") ("short-format")
     ("long-format") ("first-long-format") ("pdfstring") ("accsupp")
     ("index-sort") ("index") ("index-cmd"))
-  "List of keys accepted by `\DeclareAcronym' macro of `acro' package
+  "List of keys accepted by `\\DeclareAcronym' macro of `acro' package
 in its second mandatory argument.")
 
 (defvar LaTeX-acro-printacronyms-keys
   '(("include-classes") ("exclude-classes") ("name") ("header"))
-  "List of keys accepted by `\printacronyms' macro of `acro' package
+  "List of keys accepted by `\\printacronyms' macro of `acro' package
 in its optional argument.")
 
 (defun LaTeX-arg-acro-key-val (optional prompt key-val-alist)
diff --git a/style/booktabs.el b/style/booktabs.el
index 7de74b6..79571ea 100644
--- a/style/booktabs.el
+++ b/style/booktabs.el
@@ -41,8 +41,8 @@
   "Prompt for a value and use parentheses when it is inserted.
 If OPTIONAL is non-nil the parameter is labeled as optional.
 PROMPT is the value of the prompt to be shown."
-  (let ((TeX-arg-opening-brace "\(")
-        (TeX-arg-closing-brace "\)"))
+  (let ((TeX-arg-opening-brace "(")
+        (TeX-arg-closing-brace ")"))
     (TeX-parse-argument optional prompt)))
 
 (TeX-add-style-hook
diff --git a/style/theorem.el b/style/theorem.el
index d0fd1ff..219e864 100644
--- a/style/theorem.el
+++ b/style/theorem.el
@@ -63,10 +63,10 @@
     "Large" "LARGE" "huge" "Huge"
     ;; reset macro
     "normalfont")
-  "List of font declaration commands for \"\\theorem(body\|header)font\".")
+  "List of font declaration commands for \"\\theorem(body|header)font\".")
 
 (defun LaTeX-arg-theorem-fontdecl (optional &optional prompt)
-  "Prompt for font declaration commands in \"\\theorem(body\|header)font\".
+  "Prompt for font declaration commands in \"\\theorem(body|header)font\".
 If OPTIONAL is non-nil, insert the resulting value as an optional
 argument.  Use PROMPT as the prompt string."
   ;; `INITIAL-INPUT' (5th argument to `TeX-completing-read-multiple')

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

Summary of changes:
 style/acro.el     | 4 ++--
 style/booktabs.el | 4 ++--
 style/theorem.el  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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