aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward M. Reingold1996-06-14 19:04:46 +0000
committerEdward M. Reingold1996-06-14 19:04:46 +0000
commit2d1214b890d349d8ccc974fa836fae97a00e3f50 (patch)
tree93c744d8cf6b75d8045d3a2609c485578cfc71b1
parent0e22410ae12ada25072dc418210d978a1b9130c9 (diff)
downloademacs-2d1214b890d349d8ccc974fa836fae97a00e3f50.tar.gz
emacs-2d1214b890d349d8ccc974fa836fae97a00e3f50.zip
A bit more fiddling with layout of Filofax year page.
-rw-r--r--lisp/calendar/cal-tex.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el
index 7f4600a91cd..315d2b45b4e 100644
--- a/lisp/calendar/cal-tex.el
+++ b/lisp/calendar/cal-tex.el
@@ -300,8 +300,8 @@ Optional parameter specifies number of years."
300 (cal-tex-preamble "twoside") 300 (cal-tex-preamble "twoside")
301 (cal-tex-cmd "\\textwidth 3.25in") 301 (cal-tex-cmd "\\textwidth 3.25in")
302 (cal-tex-cmd "\\textheight 6.5in") 302 (cal-tex-cmd "\\textheight 6.5in")
303 (cal-tex-cmd "\\oddsidemargin 1.6in") 303 (cal-tex-cmd "\\oddsidemargin 1.675in")
304 (cal-tex-cmd "\\evensidemargin 1.55in") 304 (cal-tex-cmd "\\evensidemargin 1.675in")
305 (cal-tex-cmd "\\topmargin 0pt") 305 (cal-tex-cmd "\\topmargin 0pt")
306 (cal-tex-cmd "\\headheight -0.875in") 306 (cal-tex-cmd "\\headheight -0.875in")
307 (cal-tex-cmd "\\fboxsep 0.5mm") 307 (cal-tex-cmd "\\fboxsep 0.5mm")
@@ -328,9 +328,10 @@ Optional parameter specifies number of years."
328 (cal-tex-e-parbox) 328 (cal-tex-e-parbox)
329 (cal-tex-e-center) 329 (cal-tex-e-center)
330 (setq year (1+ year)) 330 (setq year (1+ year))
331 (if (/= j n) 331 (if (= j n)
332 (cal-tex-newpage) 332 (cal-tex-end-document)
333 (cal-tex-end-document)) 333 (cal-tex-newpage)
334 (cal-tex-cmd "\\vspace*{0.25in}"))
334 (run-hooks 'cal-tex-year-hook)) 335 (run-hooks 'cal-tex-year-hook))
335 (run-hooks 'cal-tex-hook))) 336 (run-hooks 'cal-tex-hook)))
336 337