From b88ea762f7f0c321176ffd0d5d47c89d6971faf7 Mon Sep 17 00:00:00 2001
From: Arun Isaac
Date: Sun, 6 Oct 2024 23:04:03 +0100
Subject: Do not use progn for else clause in if condition.

* varuga.el (varuga-insert-calendar-line): Do not use progn for else
clause in if condition.
---
 varuga.el | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/varuga.el b/varuga.el
index 5376c93..78f3f3b 100644
--- a/varuga.el
+++ b/varuga.el
@@ -91,11 +91,10 @@ KEY is the name of the ical property and VALUE is its value."
                     (progn
                       (insert str)
                       (setq octets-so-far next-octets))
-                  (progn
-                    (insert "\n ")
-                    ;; Set octets so far to 1 to account for the
-                    ;; folding space.
-                    (setq octets-so-far 1)))))
+                  (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)))
-- 
cgit v1.2.3