~bzg/org-mode

14bde5aba5b11eed2d0d776d2e492f7bc34218f2 — Ihor Radchenko 1 year, 3 months ago e203b5a
ox-icalendar: Ensure that entries in icalendar end with a newline

* lisp/ox-icalendar.el (org-icalendar--vevent):
(org-icalendar--vtodo): Make sure that there is a newline after the
exported VEVENT and VTODO.

Reported-by: Henrik Frisk <frisk.h@gmail.com>
Link: https://orgmode.org/list/CAO0LSb4aQhUMny4xr=1LB3t5F-K-WnjK1zc+qR7Jy+69vr2wpw@mail.gmail.com
1 files changed, 2 insertions(+), 2 deletions(-)

M lisp/ox-icalendar.el
M lisp/ox-icalendar.el => lisp/ox-icalendar.el +2 -2
@@ 809,7 809,7 @@ Return VEVENT component as a string."
	    "CATEGORIES:" categories "\n"
	    ;; VALARM.
	    (org-icalendar--valarm entry timestamp summary)
	    "END:VEVENT")))
	    "END:VEVENT\n")))

(defun org-icalendar--repeater-type (elem)
  "Return ELEM's repeater-type if supported, else warn and return nil."


@@ 952,7 952,7 @@ repeater on DEADLINE but not SCHEDULED. Skipping.")
		    (if (eq (org-element-property :todo-type entry) 'todo)
			"NEEDS-ACTION"
		      "COMPLETED"))
	    "END:VTODO")))
	    "END:VTODO\n")))

(defun org-icalendar--valarm (entry timestamp summary)
  "Create a VALARM component.