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. 18f178393fd4c2880cff9


From: Tassilo Horn
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 18f178393fd4c2880cff917f2bd421a3273cd708
Date: Wed, 14 Sep 2016 17:04:27 +0000 (UTC)

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  18f178393fd4c2880cff917f2bd421a3273cd708 (commit)
      from  bc2307364bfb54c8c254eb69a972ad59cfbfa15b (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 18f178393fd4c2880cff917f2bd421a3273cd708
Author: Stefan Monnier <address@hidden>
Date:   Mon Sep 12 21:04:52 2016 -0400

    Cherry-pick 9c24759a96f41e288841ec2e815d62d58dc01e7a from elpa branch
    
    * tex-ispell.el (TeX-ispell-sort-skip-cmds-list): Drop symbol-value
    
    * tex-site.el.in (TeX-modes): Use #'.

diff --git a/tex-ispell.el b/tex-ispell.el
index c519583..b12ee3e 100644
--- a/tex-ispell.el
+++ b/tex-ispell.el
@@ -250,7 +250,7 @@ skipped as cdr."))
        (dolist (elt TeX-ispell-skip-cmds-list)
          (when (= (cdr elt) arg)
            (push (car elt) cmds)))
-       (symbol-value 'cmds)))))
+       cmds))))
 
 (defvar TeX-ispell-skip-cmds-one-arg-regexp
   (eval-when-compile
diff --git a/tex-site.el.in b/tex-site.el.in
index 1fcc4da..a88f8bd 100644
--- a/tex-site.el.in
+++ b/tex-site.el.in
@@ -1,6 +1,6 @@
 ;;; tex-site.el - Site specific variables.  Don't edit.
 
-;; Copyright (C) 2005 Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2013, 2016 Free Software Foundation, Inc.
 ;;
 ;; completely rewritten.
 
@@ -39,7 +39,7 @@
 ;;; Code:
 
 (if (< emacs-major-version 21)
-  (error "AUCTeX requires Emacs 21 or later"))
+    (error "AUCTeX requires Emacs 21 or later"))
 
 ;; Define here in order for `M-x customize-group <RET> AUCTeX <RET>'
 ;; to work if the main AUCTeX files are not loaded yet.
@@ -132,14 +132,14 @@ definition."
               (get elt 'tex-saved))))))))
 
 (defcustom TeX-modes
-  (mapcar 'car TeX-mode-alist)
+  (mapcar #'car TeX-mode-alist)
   "List of modes provided by AUCTeX.
 
 This variable can't be set normally; use customize for that, or
 set it with `TeX-modes-set'."
   :type (cons 'set
              (mapcar (lambda(x) (list 'const (car x))) TeX-mode-alist))
-  :set 'TeX-modes-set
+  :set #'TeX-modes-set
   :group 'AUCTeX
   :initialize(lambda (var value)
               (custom-initialize-reset var value)

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

Summary of changes:
 tex-ispell.el  |    2 +-
 tex-site.el.in |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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