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. bbe53ede992fda3046c74


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. bbe53ede992fda3046c74daf16f22b93e944b749
Date: Tue, 11 Dec 2018 02:08:36 -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  bbe53ede992fda3046c74daf16f22b93e944b749 (commit)
       via  9c42b438b355976f471edbdb16cb2284b05b3e95 (commit)
       via  2c7385709323969247bfcd68c5c72a5f6eb76413 (commit)
       via  c893152ae30fe4330a79e430fee1f41bbaba3e96 (commit)
       via  a4576a1d354d6ff1d94e7e2351733f4c5974ea7b (commit)
      from  5147a27699890cd1b68f4640cd7b73a6ce339e40 (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 bbe53ede992fda3046c74daf16f22b93e944b749
Author: Ikumi Keita <address@hidden>
Date:   Tue Dec 11 15:34:37 2018 +0900

    Fix document
    
    * doc/auctex.texi (Completion): Correct wrong description and typo.
    (Cleaning): Add mention about variables related to AmSTeX mode.

diff --git a/doc/auctex.texi b/doc/auctex.texi
index f6d8a24..281f390 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -1354,11 +1354,12 @@ Space will complete and exit.
 
 By default @AUCTeX{} will put an empty set braces @address@hidden@}} after a
 macro with no arguments to stop it from eating the next whitespace.
-This can be stopped by entering @code{LaTeX-math-mode},
address@hidden, or by setting @code{TeX-insert-braces} to nil.
+This is supressed inside math mode and can be disabled totally by
+setting @code{TeX-insert-braces} to nil.
 
 @defopt TeX-insert-braces
-If non-nil, append a empty pair of braces after inserting a macro.
+If non-nil, append a empty pair of braces after inserting a macro with
+no arguments.
 @end defopt
 
 @defopt TeX-insert-braces-alist
@@ -1370,7 +1371,7 @@ the macro name, and the cdr is non-nil or nil, depending 
on whether a
 pair of braces should be, respectively, appended or not to the macro.
 
 If a macro has an element in this variable, @code{TeX-parse-macro} will
-use its value to decided what to do, whatever the value of the variable
+use its value to decide what to do, whatever the value of the variable
 @code{TeX-insert-braces}.
 @end defopt
 
@@ -3916,6 +3917,8 @@ process was started.
 @vindex Texinfo-clean-output-suffixes
 @vindex ConTeXt-clean-intermediate-suffixes
 @vindex ConTeXt-clean-output-suffixes
address@hidden AmSTeX-clean-intermediate-suffixes
address@hidden AmSTeX-clean-output-suffixes
 Remove generated intermediate files.  In case a prefix argument is
 given, remove output files as well.
 
@@ -3933,8 +3936,10 @@ for each @AUCTeX{} mode by means of the variables
 @code{docTeX-clean-output-suffixes},
 @code{Texinfo-clean-intermediate-suffixes},
 @code{Texinfo-clean-output-suffixes},
address@hidden and
address@hidden
address@hidden,
address@hidden,
address@hidden and
address@hidden
 @end deffn
 
 @defopt TeX-clean-confirm

commit 9c42b438b355976f471edbdb16cb2284b05b3e95
Author: Ikumi Keita <address@hidden>
Date:   Tue Dec 11 14:52:01 2018 +0900

    Use ASCII apostrophe in code expample
    
    * doc/auctex.texi (): (I/O Correlation): Use APOSTROPHE(U+0027) rather
    than RIGHT SINGLE QUOTATION MARK(U+2019) in code example.
    Add coding tag in Local Variables section.

diff --git a/doc/auctex.texi b/doc/auctex.texi
index f0703c4..f6d8a24 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -3645,7 +3645,7 @@ settings that work for some users.
       (lambda ()
        (call-process
         "wmctrl" nil nil nil "-i" "-R"
-        (frame-parameter (selected-frame) ’outer-window-id))))
+        (frame-parameter (selected-frame) 'outer-window-id))))
 @end lisp
 @end defopt
 
@@ -5899,5 +5899,6 @@ used by @AUCTeX{} for sectioning.
 
 @c Local Variables:
 @c mode: texinfo
address@hidden coding: utf-8
 @c TeX-master: t
 @c End:

commit 2c7385709323969247bfcd68c5c72a5f6eb76413
Author: Ikumi Keita <address@hidden>
Date:   Sun Dec 9 18:38:45 2018 +0900

    ; * style/pst-plot.el (LaTeX-pstplot-cleanup): Fix typo.

diff --git a/style/pst-plot.el b/style/pst-plot.el
index 8240a14..d4ddfe5 100644
--- a/style/pst-plot.el
+++ b/style/pst-plot.el
@@ -79,7 +79,7 @@
   "Temporary for parsing \\*data definitions.")
 
 (defun LaTeX-pstplot-cleanup ()
-  "Move symbols from `LaTeX-auto-pstplot to `TeX-auto-symbol'."
+  "Move symbols from `LaTeX-auto-pstplot' to `TeX-auto-symbol'."
   (mapcar (lambda (symbol)
             ;; (setq TeX-symbol-list (cons (list symbol 0) TeX-symbol-list))
             ;; (setq TeX-auto-symbol (cons (list symbol 0) TeX-auto-symbol)))

commit c893152ae30fe4330a79e430fee1f41bbaba3e96
Author: Ikumi Keita <address@hidden>
Date:   Sat Dec 8 23:23:23 2018 +0900

    Redefine support for \url in hyperref
    
    * style/hyperref.el ("hyperref"): Override the entry for \url macro in
    url.el because hyperref.sty redefines the macro.

diff --git a/style/hyperref.el b/style/hyperref.el
index 6361a9b..ade5494 100644
--- a/style/hyperref.el
+++ b/style/hyperref.el
@@ -226,6 +226,8 @@
    (TeX-add-symbols
     '("hypersetup" (TeX-arg-key-val LaTeX-hyperref-package-options-list))
     '("href" [ (TeX-arg-key-val LaTeX-hyperref-href-options) ] "URL" "Text")
+    ;; Supply dummy arg `ignore' to override the entry in url.el.
+    '("url" "URL" ignore)
     '("nolinkurl" t)
     '("hyperbaseurl" t)
     '("hyperimage" "Image URL" "Text")

commit a4576a1d354d6ff1d94e7e2351733f4c5974ea7b
Author: Ikumi Keita <address@hidden>
Date:   Sat Dec 8 05:09:50 2018 +0900

    ; * tex.el (TeX-math-toggle-off-input-method): Fix doc string.

diff --git a/tex.el b/tex.el
index 2e6ec0c..1367d4f 100644
--- a/tex.el
+++ b/tex.el
@@ -5743,7 +5743,8 @@ See also `TeX-font-replace' and 
`TeX-font-replace-function'."
          (regexp-quote TeX-dollar-string)))
 
 (defcustom TeX-math-toggle-off-input-method t
-  "*If non-nil, auto toggle off CJK input methods when entering math mode."
+  "If non-nil, auto turn off some input methods when entering math mode.
+See `TeX-math-input-method-off-regexp'."
   :group 'TeX-macro
   :type 'boolean)
 

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

Summary of changes:
 doc/auctex.texi   | 20 +++++++++++++-------
 style/hyperref.el |  2 ++
 style/pst-plot.el |  2 +-
 tex.el            |  3 ++-
 4 files changed, 18 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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