emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 32/299: * style/ulem.el (LaTeX-arg-fontdecl, LaTeX-arg-fontcmd):


From: Stefan Monnier
Subject: [elpa] 32/299: * style/ulem.el (LaTeX-arg-fontdecl, LaTeX-arg-fontcmd): Fix declarations.
Date: Sun, 02 Nov 2014 03:10:03 +0000

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

commit aac8c8f3dc15436051175dba609016e8b1087efe
Author: Tassilo Horn <address@hidden>
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  <address@hidden>
+
+       * style/ulem.el (LaTeX-arg-fontdecl, LaTeX-arg-fontcmd): Fix
+       declarations.
+
 2013-01-13  Mads Jensen  <address@hidden>
 
        * 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]