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

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

[elpa] externals/auctex b6a3005 60/62: Fix compile "Error: symbol-value


From: Tassilo Horn
Subject: [elpa] externals/auctex b6a3005 60/62: Fix compile "Error: symbol-value cannot use lexical var ‘amsenv’"
Date: Sun, 20 Dec 2020 10:40:07 -0500 (EST)

branch: externals/auctex
commit b6a30058b0b6a83c3f036b0109ddfbfe17d2070c
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>

    Fix compile "Error: symbol-value cannot use lexical var ‘amsenv’"
    
    * style/empheq.el (LaTeX-empheq-env): Don't call symbol-value on lexical
    variable amsenv.
---
 style/empheq.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/style/empheq.el b/style/empheq.el
index 7ca13b0..fc1716a 100644
--- a/style/empheq.el
+++ b/style/empheq.el
@@ -191,7 +191,7 @@
       TeX-grop
       (if (and ncols (not (string= ncols "")))
          (concat amsenv "=" ncols)
-       (symbol-value 'amsenv))
+       amsenv)
       TeX-grcl))
     (when (and (assoc amsenv LaTeX-label-alist)
               (LaTeX-label amsenv 'environment))



reply via email to

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