]> code.delx.au - gnu-emacs/commitdiff
Use cal-tex-* functions more
authorGlenn Morris <rgm@gnu.org>
Tue, 21 Aug 2012 06:50:55 +0000 (23:50 -0700)
committerGlenn Morris <rgm@gnu.org>
Tue, 21 Aug 2012 06:50:55 +0000 (23:50 -0700)
* lisp/calendar/cal-tex.el (cal-tex-cursor-filofax-year): Use cal-tex-vspace.
(cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
(cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.

lisp/ChangeLog
lisp/calendar/cal-tex.el

index 6c158945705eb673d8105e764d9afa3649576838..d0595f108cfcbe9aa0e85c2ad27d1e825babec43 100644 (file)
@@ -1,5 +1,10 @@
 2012-08-21  Glenn Morris  <rgm@gnu.org>
 
+       * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
+       Use cal-tex-vspace.
+       (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
+       (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
+
        * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
        (cal-tex-cursor-week, cal-tex-cursor-week2)
        (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
index b0facb07d4e1fd0277a3986e40fb71669f3a1817..326deef69ba383a793fd8e48cf26376310b971e4 100644 (file)
@@ -377,7 +377,7 @@ Optional EVENT indicates a buffer position to use instead of point."
     (cal-tex-cmd "\\fboxsep 0.5mm")
     (cal-tex-cmd "\\pagestyle" "empty")
     (cal-tex-b-document)
-    (cal-tex-cmd "\\vspace*" "0.25in")
+    (cal-tex-vspace "0.25in")
     (dotimes (j n)
       (insert (format "\\hfil \\textbf{\\Large %s} \\hfil\\\\\n" year))
       (cal-tex-b-center)
@@ -405,7 +405,7 @@ Optional EVENT indicates a buffer position to use instead of point."
       (if (= j (1- n))
           (cal-tex-end-document)
         (cal-tex-newpage)
-        (cal-tex-cmd "\\vspace*" "0.25in"))
+        (cal-tex-vspace "0.25in"))
       (run-hooks 'cal-tex-year-hook))
     (run-hooks 'cal-tex-hook)))
 
@@ -1809,13 +1809,11 @@ non-nil, means add to end of buffer without erasing current contents."
 
 (defun cal-tex-vspace (space)
   "Insert vspace command to move SPACE vertically."
-  (insert "\\vspace*{" space "}")
-  (cal-tex-comment))
+  (cal-tex-cmd "\\vspace*" space))
 
 (defun cal-tex-hspace (space)
   "Insert hspace command to move SPACE horizontally."
-  (insert "\\hspace*{" space "}")
-  (cal-tex-comment))
+  (cal-tex-cmd "\\hspace*" space))
 
 (defun cal-tex-comment (&optional comment)
   "Insert `% ', followed by optional string COMMENT, followed by newline.
@@ -1922,11 +1920,11 @@ Add trailing COMMENT if present."
 
 (defun cal-tex-em (string)
   "Insert STRING in italic font."
-  (insert "\\textit{" string "}"))
+  (cal-tex-cmd "\\textit" string))
 
 (defun cal-tex-bf (string)
   "Insert STRING in bf font."
-  (insert "\\textbf{ " string "}"))
+  (cal-tex-cmd "\\textbf" string))
 
 (defun cal-tex-scriptsize (string)
   "Insert STRING in scriptsize font."
@@ -1942,7 +1940,7 @@ Add trailing COMMENT if present."
 
 (defun cal-tex-Huge-bf (string)
   "Insert STRING in Huge bf font."
-  (insert "\\textbf{\\Huge " string "}"))
+  (cal-tex-cmd "\\textbf" (concat "\\Huge " string)))
 
 (defun cal-tex-large (string)
   "Insert STRING in large font."
@@ -1950,7 +1948,7 @@ Add trailing COMMENT if present."
 
 (defun cal-tex-large-bf (string)
   "Insert STRING in large bf font."
-  (insert "\\textbf{\\large " string "}"))
+  (cal-tex-cmd "\\textbf" (concat "\\large " string)))
 
 
 (provide 'cal-tex)