From 6213b40df636feabde32b54e244b49db6f6e98da Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 12 Aug 1997 00:55:31 +0000 Subject: [PATCH] (cal-tex-latexify-list): Put the elements of RESULT in the proper order. --- lisp/calendar/cal-tex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "\\\\"))) -- 2.39.2