emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/auctex 9c24759: * tex-ispell.el (TeX-ispell-sort-skip-c


From: Stefan Monnier
Subject: [elpa] externals/auctex 9c24759: * tex-ispell.el (TeX-ispell-sort-skip-cmds-list): Drop symbol-value
Date: Tue, 13 Sep 2016 01:05:19 +0000 (UTC)

branch: externals/auctex
commit 9c24759a96f41e288841ec2e815d62d58dc01e7a
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * tex-ispell.el (TeX-ispell-sort-skip-cmds-list): Drop symbol-value
    
    * tex-site.el (TeX-modes): Use #'.
---
 tex-ispell.el |    2 +-
 tex-site.el   |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

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 b/tex-site.el
index 8e529a9..5916fa2 100644
--- a/tex-site.el
+++ b/tex-site.el
@@ -1,6 +1,6 @@
 ;;; tex-site.el - Site specific variables.  Don't edit.
 
-;; Copyright (C) 2005, 2013 Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2013, 2016 Free Software Foundation, Inc.
 ;;
 ;; completely rewritten.
 
@@ -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)



reply via email to

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