Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion calfw-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ Returns a new calfw source."
;; ))

(defun calfw-org-read-date-command ()
"Move the cursor to the specified date."
"Read a date and return it as a calendar date value."
(interactive)
(calfw-emacs-to-calendar (org-read-date nil 'to-time)))

Expand Down
7 changes: 3 additions & 4 deletions calfw.el
Original file line number Diff line number Diff line change
Expand Up @@ -479,10 +479,9 @@ Returns a list of HOURS and MINUTES."
"Transform the string format YYYY/MM/DD in STR to a calendar date value."
(calfw-emacs-to-calendar (calfw-parsetime-emacs str)))

(defun calfw-read-date-command-simple (string-date)
"Move the cursor to the specified date.

Parse STRING-DATE using `calfw-parsetime'."
(defun calfw-read-date-command-simple (string-date)
"Parse STRING-DATE and return it as a calendar date value."
(interactive "sInput Date (YYYY/MM/DD): ")
(calfw-parsetime string-date))

Expand Down Expand Up @@ -621,7 +620,7 @@ CLR2 is composited with 1-ALPHA transpancy."
end-date ; end date of the event [calfw-date] (optional)
end-time ; end of the event (optional)
description ; event description [string] (optional)
location ; location [strting] (optional)
location ; location [string] (optional)
source ; [internal] source of the event
status ; 'cancelled, 'tentative, 'confirmed or nil
data ; reference to event data
Expand Down