diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:55:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-12 00:55:31 +0000 |
commit | c6d3de767a469c055ad2231b6d78179c16e28304 (patch) | |
tree | 81dd7eb1d17f32ab6af26f6efef75e7f6c31a598 /lisp/calendar/cal-tex.el | |
parent | fcd4f31c827e875d5e500acb9c90018e7a52f940 (diff) | |
download | emacs-c6d3de767a469c055ad2231b6d78179c16e28304.tar.gz |
(cal-tex-latexify-list): Put the elements of RESULT in the proper order.
Diffstat (limited to 'lisp/calendar/cal-tex.el')
-rw-r--r-- | lisp/calendar/cal-tex.el | 2 |
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 "\\\\"))) |