]> git.eshelyaron.com Git - emacs.git/commitdiff
* files.el (hack-local-variables-filter): Remove useless eval.
authorAndreas Schwab <schwab@linux-m68k.org>
Mon, 13 Aug 2012 07:37:05 +0000 (09:37 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 13 Aug 2012 07:37:05 +0000 (09:37 +0200)
lisp/ChangeLog
lisp/files.el

index 79ea1e0bdd4e3de4b61ff39a31ae2644a8b379d3..03ba16d91d96ac38135195a5d1252770a1047f31 100644 (file)
@@ -1,3 +1,7 @@
+2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * files.el (hack-local-variables-filter): Remove useless eval.
+
 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
 
        * subr.el (with-selected-window): Fix last change.
@@ -6,7 +10,8 @@
 
        * subr.el (internal--before-with-seleted-window)
        (internal--after-with-seleted-window): New functions.
-       (with-selected-window): Use them, to replace dependency on tty-top-frame.
+       (with-selected-window): Use them, to replace dependency on
+       tty-top-frame.
 
 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
 
index a7c9a7f7db4f02ad31d7869e1c38c34018346b4b..bec494b80a296fa758f0473dd608fcc1d69444be 100644 (file)
@@ -3102,8 +3102,7 @@ DIR-NAME is the name of the associated directory.  Otherwise it is nil."
              ;; Obey `enable-local-eval'.
              ((eq var 'eval)
               (when enable-local-eval
-                (let ((safe (or (hack-one-local-variable-eval-safep
-                                 (eval (quote val)))
+                (let ((safe (or (hack-one-local-variable-eval-safep val)
                                 ;; In case previously marked safe (bug#5636).
                                 (safe-local-variable-p var val))))
                   ;; If not safe and e-l-v = :safe, ignore totally.