From d8a2a51c36ea13f46a5cdc76a2f3f14a41dc4d5f Mon Sep 17 00:00:00 2001 From: Eduardo Bellani Date: Tue, 12 Oct 2021 11:17:28 -0300 Subject: [PATCH] fix: remove `cfw:trim` so that event details are displayed --- calfw-cal.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calfw-cal.el b/calfw-cal.el index 2a09711..a7c68ab 100644 --- a/calfw-cal.el +++ b/calfw-cal.el @@ -49,9 +49,9 @@ (defun cfw:cal-entry-to-event (date string) "[internal] Add text properties to string, allowing calfw to act on it." - (let* ((lines (split-string + (let* ((lines (split-string (replace-regexp-in-string - "[\t ]+" " " (cfw:trim string)) + "[\t ]+" " " string) "\n")) (first (car lines)) (desc (mapconcat 'identity (cdr lines) "\n"))