monnier pushed a commit to branch externals/auctex
in repository elpa.
commit cc154b02648099744238d9e984b65fb68faed199
Author: Mosè Giordano <[email protected]>
Date: Tue Nov 5 16:16:06 2013 +0100
Really fix bug in biblatex style file.
* style/biblatex.el ("biblatex"): Do not quote at all
`TeX-arg-key-val' arguments.
---
ChangeLog | 5 +++++
style/biblatex.el | 28 ++++++++++++++--------------
2 files changed, 19 insertions(+), 14 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 86078c5..376305c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-05 Mos� Giordano <[email protected]>
+
+ * style/biblatex.el ("biblatex"): Do not quote at all
+ `TeX-arg-key-val' arguments.
+
2013-11-03 Mos� Giordano <[email protected]>
* style/biblatex.el ("biblatex"): Quote `TeX-arg-key-val'
diff --git a/style/biblatex.el b/style/biblatex.el
index fe8df3d..f10c571 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 (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"))))])
+ [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")))])
'("bibbysection"
- [TeX-arg-key-val (quote (("env") ("heading") ("prenote") ("postnote")))])
+ [TeX-arg-key-val (("env") ("heading") ("prenote") ("postnote"))])
'("bibbysegment"
- [TeX-arg-key-val (quote (("env") ("heading") ("prenote") ("postnote")))])
+ [TeX-arg-key-val (("env") ("heading") ("prenote") ("postnote"))])
'("bibbycategory"
- [TeX-arg-key-val (quote (("env") ("prenote") ("postnote") ("section")))])
+ [TeX-arg-key-val (("env") ("prenote") ("postnote") ("section"))])
'("printbibheading"
- [TeX-arg-key-val (quote (("heading") ("title")))])
+ [TeX-arg-key-val (("heading") ("title"))])
;; The List of Shorthands
'("printshorthands"
- [TeX-arg-key-val (quote (("env") ("heading") ("title") ("prenote")
("postnote")
- ("section") ("segment") ("sorting") ("type")
("nottype")
- ("subtype") ("notsubtype") ("keyword")
("notkeyword")
- ("categoy") ("notcategory") ("filter")
("check")))])
+ [TeX-arg-key-val (("env") ("heading") ("title") ("prenote") ("postnote")
+ ("section") ("segment") ("sorting") ("type") ("nottype")
+ ("subtype") ("notsubtype") ("keyword") ("notkeyword")
+ ("categoy") ("notcategory") ("filter") ("check"))])
;; Bibliography Sections
'("newrefsection" ["Resources"])
"endrefsection"