monnier pushed a commit to branch externals/auctex
in repository elpa.
commit aac8c8f3dc15436051175dba609016e8b1087efe
Author: Tassilo Horn <[email protected]>
Date: Mon Jan 14 20:04:50 2013 +0000
* style/ulem.el (LaTeX-arg-fontdecl, LaTeX-arg-fontcmd): Fix
declarations.
---
ChangeLog | 5 +++++
style/ulem.el | 16 ++++++++--------
2 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 0f6cf28..a85de28 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-01-14 Tassilo Horn <[email protected]>
+
+ * style/ulem.el (LaTeX-arg-fontdecl, LaTeX-arg-fontcmd): Fix
+ declarations.
+
2013-01-13 Mads Jensen <[email protected]>
* style/pstricks.el (LaTeX-pstricks-package-options): New
diff --git a/style/ulem.el b/style/ulem.el
index ea6422c..8e3ecb9 100644
--- a/style/ulem.el
+++ b/style/ulem.el
@@ -61,17 +61,17 @@
("xout" "{")) 'textual))))
(defvar LaTeX-arg-fontdecl
- '(mapcar (concat (lambda (str) (concat "\\" str)))
- '("itshape" "bfseries" "scshape"
- "ttfamily" "upshape" "mdseries"
- "rmfamily" "sffamily" "slshape"))
+ (mapcar (lambda (str) (concat "\\" str))
+ '("itshape" "bfseries" "scshape"
+ "ttfamily" "upshape" "mdseries"
+ "rmfamily" "sffamily" "slshape"))
"List of font declaration commands in LaTeX")
(defvar LaTeX-arg-fontcmd
- '(mapcar (concat (lambda (str) (concat "\\" str)))
- '("textit" "textbf" "textsc"
- "texttt" "textup" "textmd"
- "textrm" "textsf" "textsl"))
+ (mapcar (lambda (str) (concat "\\" str))
+ '("textit" "textbf" "textsc"
+ "texttt" "textup" "textmd"
+ "textrm" "textsf" "textsl"))
"List of font commands in LaTeX")
(defun TeX-arg-ulem-fontdecl (optional &optional prompt)