branch: externals/auctex
commit 05cf5be810abefa37d04fa7443ddfb1ef0edbb50
Author: Arash Esbati <[email protected]>
Commit: Mosè Giordano <[email protected]>
Append `-list' to `LaTeX-eso-pic-package-options'.
* style/eso-pic.el (LaTeX-eso-pic-package-options-list): Rename
from `LaTeX-eso-pic-package-options'.
(LaTeX-eso-pic-package-options): Use renamed variable.
Signed-off-by: Mosè Giordano <[email protected]>
---
ChangeLog | 4 ++++
style/eso-pic.el | 7 +++----
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 18cf9d1..a7f9ffb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-09-13 Arash Esbati <[email protected]>
+ * style/eso-pic.el (LaTeX-eso-pic-package-options-list): Rename
+ from `LaTeX-eso-pic-package-options'.
+ (LaTeX-eso-pic-package-options): Use renamed variable.
+
* style/AlegreyaSans.el: New file.
* Makefile.in (STYLESRC): Add new style.
diff --git a/style/eso-pic.el b/style/eso-pic.el
index 8b43535..b1bedb2 100644
--- a/style/eso-pic.el
+++ b/style/eso-pic.el
@@ -72,9 +72,8 @@
"gridSetup" "LenToUnit"))
LaTeX-dialect)
-(defvar LaTeX-eso-pic-package-options
- '(;;
- ("pscoord" ("true" "false"))
+(defvar LaTeX-eso-pic-package-options-list
+ '(("pscoord" ("true" "false"))
("texcoord" ("true" "false"))
("grid" ("true" "false"))
("gridunit" ("mm" "in" "bp" "pt"))
@@ -86,6 +85,6 @@
(defun LaTeX-eso-pic-package-options nil
"Prompt for package options for the eso-pic package."
- (TeX-read-key-val t LaTeX-eso-pic-package-options))
+ (TeX-read-key-val t LaTeX-eso-pic-package-options-list))
;;; eso-pic.el ends here