From 74495f5b03434332424c118c121fe8a600b95a83 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 16 Jun 2024 20:53:31 +0100 Subject: Use LF line ending instead of CRLF. * varuga.el (varuga-insert-calendar-line): Use LF line ending instead of CRLF. * varuga-tests.el (actual-line-feed-in-data): Update test. --- varuga.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'varuga.el') diff --git a/varuga.el b/varuga.el index d17e1aa..1d17779 100644 --- a/varuga.el +++ b/varuga.el @@ -84,14 +84,14 @@ KEY is the name of the ical property and VALUE is its value." (insert str) (setq octets-so-far next-octets)) (progn - (insert "\r\n ") + (insert "\n ") ;; Set octets so far to 1 to account for the ;; folding space. (setq octets-so-far 1))))) (format "%s:%s" (upcase (symbol-name key)) value))) - (insert "\r\n")) + (insert "\n")) (defun varuga-format-time-string (time) "Format TIME to ical specification." -- cgit v1.2.3