From: Richard M. Stallman Date: Tue, 12 Aug 1997 00:55:31 +0000 (+0000) Subject: (cal-tex-latexify-list): Put the elements of RESULT in the proper order. X-Git-Tag: emacs-20.1~637 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6213b40df636feabde32b54e244b49db6f6e98da;p=emacs.git (cal-tex-latexify-list): Put the elements of RESULT in the proper order. --- 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 "\\\\")))