From 084639e28e433ea612d7c066f40f7011d0fc0c59 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Mon, 1 Aug 2022 19:11:12 +0300 Subject: [PATCH] fix: lint --- org-journal-tags.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/org-journal-tags.el b/org-journal-tags.el index 4f7fdee..f1e35db 100644 --- a/org-journal-tags.el +++ b/org-journal-tags.el @@ -309,8 +309,7 @@ This function is a version of `decoded-time-add' which takes into account only the year, month and day fields of DELTA. This is so because `time-convert' in the original function spams \"obsolete timestamp\" to the console if DELTA has some fields set to nil." - (let ((time (copy-sequence time)) - seconds) + (let ((time (copy-sequence time))) ;; Years are simple. (when (decoded-time-year delta) (cl-incf (decoded-time-year time) (decoded-time-year delta)))