Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5a1d5766
Commit
5a1d5766
authored
Aug 27, 1998
by
Karl Heuer
Browse files
(cal-tex-cursor-filofax-daily): Don't use oddp.
parent
3f235494
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
lisp/calendar/cal-tex.el
lisp/calendar/cal-tex.el
+5
-4
No files found.
lisp/calendar/cal-tex.el
View file @
5a1d5766
...
...
@@ -1256,10 +1256,11 @@ Holidays are included if `cal-tex-holidays' is t."
(
cal-tex-cmd
"\\pagestyle{empty}"
)
(
calendar-for-loop
i
from
1
to
n
do
(
calendar-for-loop
j
from
1
to
5
do
(
insert
(
if
(
oddp
j
)
"\\righthead"
"\\lefthead"
))
(
cal-tex-arg
(
calendar-date-string
date
))
(
insert
"%\n"
)
(
insert
(
if
(
oddp
j
)
"\\rightday"
"\\leftday"
))
(
let
((
odd
(
/=
0
(
%
j
2
))))
(
insert
(
if
odd
"\\righthead"
"\\lefthead"
))
(
cal-tex-arg
(
calendar-date-string
date
))
(
insert
"%\n"
)
(
insert
(
if
odd
"\\rightday"
"\\leftday"
)))
(
cal-tex-arg
(
cal-tex-latexify-list
diary-list
date
))
(
cal-tex-arg
(
cal-tex-latexify-list
holidays
date
))
(
cal-tex-arg
(
eval
cal-tex-daily-string
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment