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


From: Tassilo Horn
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. fa24654358dea143f868a1439945ed9203963c29
Date: Tue, 25 Jul 2017 13:57:08 -0400 (EDT)

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  fa24654358dea143f868a1439945ed9203963c29 (commit)
       via  c8c8677540af4dba432bd582208da9ffc892f78b (commit)
       via  e0d067f4f37e0f648c9090ff003582966e87998d (commit)
      from  97dca3f50fc0a68d10344b5f675bdfe0bf4320c6 (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 fa24654358dea143f868a1439945ed9203963c29
Author: Stefan Monnier <address@hidden>
Date:   Sun May 7 23:03:15 2017 -0400

    * font-latex.el: Use the standard utf-8 rather than latin-1

diff --git a/font-latex.el b/font-latex.el
index 96787f1..9296a1c 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -69,7 +69,7 @@
   "Regexp used to find quotes.")
 (make-variable-buffer-local 'font-latex-quote-regexp-beg)
 
-(defvar font-latex-quote-list '(("``" "''") ("<<" ">>" french) ("«" "»" 
french))
+(defvar font-latex-quote-list '(("``" "''") ("<<" ">>" french) ("«" "»" 
french))
   "List of quote specifiers for quotation fontification.
 
 Each element of the list is either a list consisting of two
@@ -2240,7 +2240,7 @@ END marks boundaries for searching for quotation ends."
 (provide 'font-latex)
 
 ;; Local Variables:
-;; coding: iso-8859-1
+;; coding: utf-8
 ;; End:
 
 ;;; font-latex.el ends here

commit c8c8677540af4dba432bd582208da9ffc892f78b
Author: Stefan Monnier <address@hidden>
Date:   Sun May 7 22:59:00 2017 -0400

    Fix unescaped character literals
    
    * font-latex.el (font-latex-command-with-args-opt-arg-delims)
    * tex-fold.el (TeX-fold-expand-spec): Escape [ and ] character literals

diff --git a/font-latex.el b/font-latex.el
index e4f9713..96787f1 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -1588,7 +1588,7 @@ XEmacs does not do this at the time of this writing."
 Set this to nil if verification of command syntax is unwanted.")
 
 (defvar font-latex-command-with-args-opt-arg-delims
-  '((?[ . ?]) (?< . ?>) (?\( . ?\)))
+  '((?\[ . ?\]) (?< . ?>) (?\( . ?\)))
   "List character pairs used as delimiters for optional arguments.")
 
 (defvar font-latex-syntax-error-modes '(latex-mode)
diff --git a/tex-fold.el b/tex-fold.el
index cf4284e..6188147 100644
--- a/tex-fold.el
+++ b/tex-fold.el
@@ -1,6 +1,6 @@
 ;;; tex-fold.el --- Fold TeX macros.
 
-;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011-2012, 2014
+;; Copyright (C) 2004-2008, 2011-2012, 2014, 2017
 ;;   Free Software Foundation, Inc.
 
 ;; Author: Ralf Angeli <address@hidden>
@@ -765,7 +765,7 @@ Return non-nil if a removal happened, nil otherwise."
   "Expand instances of {<num>}, [<num>], <<num>>, and (<num>).
 Replace them with the respective macro argument."
   (let ((spec-list (split-string spec "||"))
-       (delims '((?{ . ?}) (?[ . ?]) (?< . ?>) (?\( . ?\))))
+       (delims '((?\{ . ?\}) (?\[ . ?\]) (?< . ?>) (?\( . ?\))))
        index success)
     (catch 'success
       ;; Iterate over alternatives.

commit e0d067f4f37e0f648c9090ff003582966e87998d
Author: Tassilo Horn <address@hidden>
Date:   Tue Jul 25 19:50:44 2017 +0200

    Manually cherry-pick commit bc0db60e

diff --git a/tex-site.el.in b/tex-site.el.in
index a88f8bd..948a205 100644
--- a/tex-site.el.in
+++ b/tex-site.el.in
@@ -39,7 +39,14 @@
 ;;; Code:
 
 (if (< emacs-major-version 21)
-    (error "AUCTeX requires Emacs 21 or later"))
+    (error "AUCTeX requires Emacs 21 or later")) ;FIXME: Really?
+
+(unless (or (fboundp 'TeX-modes-set)     ;Avoid inf-looping.
+            (fboundp 'TeX-tex-mode))     ;auctex-autoloads is not loaded.
+  ;; Try and support the case where someone loads tex-site.el or
+  ;; auctex.el directly, in the old way.
+  (provide 'tex-site)        ;Avoid (re)loading tex-site from auctex-autoloads.
+  (load "auctex-autoloads" 'noerror 'nomessage))
 
 ;; Define here in order for `M-x customize-group <RET> AUCTeX <RET>'
 ;; to work if the main AUCTeX files are not loaded yet.

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

Summary of changes:
 font-latex.el  | 6 +++---
 tex-fold.el    | 4 ++--
 tex-site.el.in | 9 ++++++++-
 3 files changed, 13 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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