monnier pushed a commit to branch externals/auctex
in repository elpa.

commit 830437f088d20184815d95c2f6a70ea50e1a9458
Author: Mosè Giordano <giordano.m...@libero.it>
Date:   Sun Nov 3 19:06:35 2013 +0100

    Fix in biblatex style file.
    
    * style/biblatex.el ("biblatex"): Quote `TeX-arg-key-val'
    arguments with `quote' special form istead of apostrophe.
---
 ChangeLog         |    5 +++++
 style/biblatex.el |   28 ++++++++++++++--------------
 2 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b7506f8..86078c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-03  Mos� Giordano  <giordano.m...@libero.it>
+
+       * style/biblatex.el ("biblatex"): Quote `TeX-arg-key-val'
+       arguments with `quote' special form istead of apostrophe.
+
 2013-11-02  Mos� Giordano  <giordano.m...@libero.it>
 
        * latex.el (LaTeX-narrow-to-environment): New function, disabled
diff --git a/style/biblatex.el b/style/biblatex.el
index 491df5e..fe8df3d 100644
--- a/style/biblatex.el
+++ b/style/biblatex.el
@@ -249,26 +249,26 @@ for citation keys."
       LaTeX-arg-addbibresource)
     ;; The Bibliography
     '("printbibliography"
-      [TeX-arg-key-val '(("env") ("heading") ("title") ("prenote") ("postnote")
-                        ("section") ("segment") ("sorting") ("type") 
("nottype")
-                        ("subtype") ("notsubtype") ("keyword") ("notkeyword")
-                        ("categoy") ("notcategory") ("filter") ("check")
-                        ("prefixnumbers") ("resetnumbers" ("true" "false"))
-                        ("omitnumbers" ("true" "false")))])
+      [TeX-arg-key-val (quote (("env") ("heading") ("title") ("prenote") 
("postnote")
+                              ("section") ("segment") ("sorting") ("type") 
("nottype")
+                              ("subtype") ("notsubtype") ("keyword") 
("notkeyword")
+                              ("categoy") ("notcategory") ("filter") ("check")
+                              ("prefixnumbers") ("resetnumbers" ("true" 
"false"))
+                              ("omitnumbers" ("true" "false"))))])
     '("bibbysection"
-      [TeX-arg-key-val '(("env") ("heading") ("prenote") ("postnote"))])
+      [TeX-arg-key-val (quote (("env") ("heading") ("prenote") ("postnote")))])
     '("bibbysegment"
-      [TeX-arg-key-val '(("env") ("heading") ("prenote") ("postnote"))])
+      [TeX-arg-key-val (quote (("env") ("heading") ("prenote") ("postnote")))])
     '("bibbycategory"
-      [TeX-arg-key-val '(("env") ("prenote") ("postnote") ("section"))])
+      [TeX-arg-key-val (quote (("env") ("prenote") ("postnote") ("section")))])
     '("printbibheading"
-      [TeX-arg-key-val '(("heading") ("title"))])
+      [TeX-arg-key-val (quote (("heading") ("title")))])
     ;; The List of Shorthands
     '("printshorthands"
-      [TeX-arg-key-val '(("env") ("heading") ("title") ("prenote") ("postnote")
-                        ("section") ("segment") ("sorting") ("type") 
("nottype")
-                        ("subtype") ("notsubtype") ("keyword") ("notkeyword")
-                        ("categoy") ("notcategory") ("filter") ("check"))])
+      [TeX-arg-key-val (quote (("env") ("heading") ("title") ("prenote") 
("postnote")
+                              ("section") ("segment") ("sorting") ("type") 
("nottype")
+                              ("subtype") ("notsubtype") ("keyword") 
("notkeyword")
+                              ("categoy") ("notcategory") ("filter") 
("check")))])
     ;; Bibliography Sections
     '("newrefsection" ["Resources"])
     "endrefsection"

Reply via email to