summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-07-25 05:59:11 +0000
committerRichard M. Stallman <rms@gnu.org>1998-07-25 05:59:11 +0000
commit6a271152e3930466f70c666d3f05ccbbabb0b362 (patch)
tree92bafd1779d8609bea807628b9735a9097a7b894
parent558b0c8617bb69791486f0661b074e23f81b659b (diff)
downloademacs-6a271152e3930466f70c666d3f05ccbbabb0b362.tar.gz
(cal-tex-latexify-list): Ignore specifer in diary entry.
-rw-r--r--lisp/calendar/cal-tex.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el
index 265bcd64cec..2976f66eb21 100644
--- a/lisp/calendar/cal-tex.el
+++ b/lisp/calendar/cal-tex.el
@@ -1444,9 +1444,9 @@ Use double backslash as a separator unless optional SEPARATOR is given."
(while p
(and (car (car p))
(calendar-date-equal date (car (car p)))
- (setq result (append result (cdr (car p)))))
+ (setq result (cons (car (cdr (car p))) result)))
(setq p (cdr p)))
- result)
+ (reverse result))
(if separator separator "\\\\")))
(defun cal-tex-previous-month (date)