From f46e35bb8c355b4e8b2fa9d1afd0398741453e03 Mon Sep 17 00:00:00 2001 From: Charlie El Hourani Date: Sat, 20 May 2023 10:50:08 +0300 Subject: [PATCH] fix custom type --- lisp-diary.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp-diary.el b/lisp-diary.el index 3efaee8..1f2cf2e 100644 --- a/lisp-diary.el +++ b/lisp-diary.el @@ -11,15 +11,15 @@ (defcustom lisp-diary-date-line-format ";; %s\n" "Format of comment line indicating the date." - :type 'file :group 'lisp-diary) + :type 'string :group 'lisp-diary) (defcustom lisp-diary-day-notes-template "\"\"\n" "Template for a day's notes." - :type 'file :group 'lisp-diary) + :type 'string :group 'lisp-diary) (defcustom lisp-diary-date-format "%a %b %d %Y" "Format of date in comment line." - :type 'file :group 'lisp-diary) + :type 'string :group 'lisp-diary) (defun get-date-at-days-offset (n &optional fmt) "Get string formatted day N days from today.