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. 4f9666b59249c49412cc5


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 4f9666b59249c49412cc51a4491440d85d24127e
Date: Sat, 16 Apr 2016 14:02:18 +0000

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  4f9666b59249c49412cc51a4491440d85d24127e (commit)
       via  71349ec6a632f00dfe5365d3f29238b0ec1ef616 (commit)
       via  44e654be1b80a6462c93fc32efb910d14992cf33 (commit)
       via  d9910d4b368c7b084fc677c81e7abbf4fd285b99 (commit)
      from  88fbf8021c7da3c2bf14a646663bd0eb0ccc1448 (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 4f9666b59249c49412cc51a4491440d85d24127e
Author: Ikumi Keita <address@hidden>
Date:   Fri Apr 15 23:10:10 2016 +0900

    Use customize option `TeX-region' instead of "_region_"
    
    * tex-buf.el (TeX-output-revert-buffer): Use customize option
    `TeX-region' instead of string literal "_region_".
    
    Signed-off-by: Mosè Giordano <address@hidden>

diff --git a/tex-buf.el b/tex-buf.el
index a132222..c9cda7d 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -3677,7 +3677,7 @@ forward, if negative)."
       (let ((name (match-string 1))
             (file (match-string 2)))
         (with-current-buffer TeX-command-buffer
-          (TeX-command name (if (string-match "_region_" file)
+          (TeX-command name (if (string-match TeX-region file)
                                 #'TeX-region-file
                               #'TeX-master-file))))
     (error "Unable to find what command to run")))

commit 71349ec6a632f00dfe5365d3f29238b0ec1ef616
Author: Ikumi Keita <address@hidden>
Date:   Fri Apr 15 23:09:45 2016 +0900

    Use `deactivate-input-method' if defined
    
    * tex.el (TeX-math-input-method-off): Use `deactivate-input-method'
    instead of obsolete function `inactivate-input-method' when possible.
    
    Signed-off-by: Mosè Giordano <address@hidden>

diff --git a/tex.el b/tex.el
index 7ca5bb2..cf9faae 100644
--- a/tex.el
+++ b/tex.el
@@ -5950,7 +5950,10 @@ sign.  With optional ARG, insert that many dollar signs."
        (texmathp)
        (boundp 'current-input-method) current-input-method
        (string-match TeX-math-input-method-off-regexp current-input-method)
-       (inactivate-input-method)))
+       ;; inactivate-input-method is obsolete since emacs 24.3.
+       (if (fboundp 'deactivate-input-method)
+          (deactivate-input-method)
+        (inactivate-input-method))))
 
 ;;; Simple Commands
 

commit 44e654be1b80a6462c93fc32efb910d14992cf33
Author: Ikumi Keita <address@hidden>
Date:   Fri Apr 15 23:09:17 2016 +0900

    Use `match-string-no-properties'
    
    * texmathp.el (texmathp, texmathp-match-environment): For better
    consistency with other parts of the file, change `match-string' to
    `no-properties' variant.
    
    Signed-off-by: Mosè Giordano <address@hidden>

diff --git a/texmathp.el b/texmathp.el
index e83f548..75eb2c0 100644
--- a/texmathp.el
+++ b/texmathp.el
@@ -287,7 +287,7 @@ See the variable `texmathp-tex-commands' about which 
commands are checked."
          (goto-char (cdr match))
          (while (re-search-forward texmathp-toggle-regexp pos t)
            (if (setq math-on (not math-on))
-               (setq sw-match (cons (match-string 2) (match-beginning 2)))
+               (setq sw-match (cons (match-string-no-properties 2) 
(match-beginning 2)))
              (setq sw-match nil)))
          (and math-on sw-match (setq match sw-match))))
 
@@ -336,7 +336,7 @@ Limit searched to BOUND.  The return value is like 
(\"equation\" . (point))."
            (when (eq orig-comment-flag current-comment-flag)
              (setq env (buffer-substring-no-properties
                         (match-beginning 2) (match-end 2)))
-             (cond ((string= (match-string 1) "end")
+             (cond ((string= (match-string-no-properties 1) "end")
                     (setq end-list (cons env end-list)))
                    ((equal env (car end-list))
                     (setq end-list (cdr end-list)))

commit d9910d4b368c7b084fc677c81e7abbf4fd285b99
Author: Ikumi Keita <address@hidden>
Date:   Fri Apr 15 15:50:28 2016 +0900

    Fix small errors in doc string and comment
    
    * tex.el (TeX-auto-add-type): Change the word `function' to `macro'
    and add an `s' to the verb `create'.
    
    * tex-buf.el (TeX-run-format): Correct a typo `debuger' to `debugger'.
    
    Signed-off-by: Mosè Giordano <address@hidden>

diff --git a/tex-buf.el b/tex-buf.el
index 2b1e1a3..a132222 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1023,7 +1023,7 @@ Return the new process."
   (TeX-run-set-command name command)
   (let ((buffer (TeX-process-buffer-name file))
        (process (TeX-run-command name command file)))
-    ;; Hook to TeX debuger.
+    ;; Hook to TeX debugger.
     (with-current-buffer buffer
       (TeX-parse-reset)
       (setq TeX-parse-function #'TeX-parse-TeX)
diff --git a/tex.el b/tex.el
index 026824d..7ca5bb2 100644
--- a/tex.el
+++ b/tex.el
@@ -3755,7 +3755,7 @@ The algorithm is as follows:
 Optional third argument PLURAL is the plural form of TYPE.
 By default just add an `s'.
 
-This function create a set of variables and functions to maintain a
+This macro creates a set of variables and functions to maintain a
 separate type of information in the parser."
   (let* ((names (or plural (concat name "s")))
         (tmp (intern (concat prefix "-auto-" name)))

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

Summary of changes:
 tex-buf.el  |    4 ++--
 tex.el      |    7 +++++--
 texmathp.el |    4 ++--
 3 files changed, 9 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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