summaryrefslogtreecommitdiff
path: root/lisp/calendar
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-12 00:55:31 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-12 00:55:31 +0000
commitc6d3de767a469c055ad2231b6d78179c16e28304 (patch)
tree81dd7eb1d17f32ab6af26f6efef75e7f6c31a598 /lisp/calendar
parentfcd4f31c827e875d5e500acb9c90018e7a52f940 (diff)
downloademacs-c6d3de767a469c055ad2231b6d78179c16e28304.tar.gz
(cal-tex-latexify-list): Put the elements of RESULT in the proper order.
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/cal-tex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el
index f01627b7891..4caa6839115 100644
--- a/lisp/calendar/cal-tex.el
+++ b/lisp/calendar/cal-tex.el
@@ -1355,7 +1355,7 @@ 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 (cdr (car p)) result)))
+ (setq result (append result (cdr (car p)))))
(setq p (cdr p)))
result)
(if separator separator "\\\\")))