Преглед изворни кода

ox-icalendar: Fix timezone export bug

* ox-icalendar.el (org-icalendar-export-current-agenda): Correct
  argument order in call to org-icalendar--vcalendar (timezone should be
  third, description fourth).

TINYCHANGE
Richard Lawrence пре 9 година
родитељ
комит
3bf19b30f0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lisp/ox-icalendar.el

+ 1 - 1
lisp/ox-icalendar.el

@@ -909,8 +909,8 @@ This function assumes major mode for current buffer is
        (org-icalendar--vcalendar
 	org-icalendar-combined-name
 	user-full-name
-	org-icalendar-combined-description
 	(or (org-string-nw-p org-icalendar-timezone) (cadr (current-time-zone)))
+	org-icalendar-combined-description
 	contents)))
     (run-hook-with-args 'org-icalendar-after-save-hook file)))