Skip to content

Commit

Permalink
fix custom type
Browse files Browse the repository at this point in the history
  • Loading branch information
chachie committed May 20, 2023
1 parent 4e16d13 commit f46e35b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lisp-diary.el
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f46e35b

Please sign in to comment.