monnier pushed a commit to branch externals/auctex
in repository elpa.
commit 94c89491a60c77986bc0ac92b192fbf257c47018
Author: Tassilo Horn <[email protected]>
Date: Thu Feb 14 13:51:18 2013 +0000
* style/siunitx.el (LaTeX-siunitx-package-options): New function.
* style/hyperref.el (LaTeX-hyperref-package-options): New
function.
---
ChangeLog | 7 +++++++
style/hyperref.el | 6 ++++++
style/siunitx.el | 6 ++++++
3 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 03d0bdf..f13e6da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-02-14 Mos� Giordano <[email protected]>
+
+ * style/siunitx.el (LaTeX-siunitx-package-options): New function.
+
+ * style/hyperref.el (LaTeX-hyperref-package-options): New
+ function.
+
2013-02-13 Mads Jensen <[email protected]>
* style/subfigure.el: Expanded copyright range.
diff --git a/style/hyperref.el b/style/hyperref.el
index 5a6cb98..e533dad 100644
--- a/style/hyperref.el
+++ b/style/hyperref.el
@@ -228,4 +228,10 @@
(when (fboundp 'reftex-ref-style-activate)
(reftex-ref-style-activate "Hyperref"))))
+(defun LaTeX-hyperref-package-options nil
+ "Prompt for package options for the hyperref package."
+ (let ((options
+ (TeX-arg-key-val nil LaTeX-hyperref-package-options)))
+ options))
+
;;; hyperref.el ends here
diff --git a/style/siunitx.el b/style/siunitx.el
index bcb85bd..2e3988c 100644
--- a/style/siunitx.el
+++ b/style/siunitx.el
@@ -595,4 +595,10 @@ string."
("highlight" "{"))
'function))))
+(defun LaTeX-siunitx-package-options nil
+ "Prompt for package options for the siunitx package."
+ (let ((options
+ (TeX-arg-key-val nil LaTeX-siunitx-package-options)))
+ options))
+
;; siunitx.el ends here