Function: calendar-iso-goto-week
calendar-iso-goto-week is an autoloaded, interactive and byte-compiled
function defined in cal-iso.el.gz.
Signature
(calendar-iso-goto-week DATE &optional NOECHO)
Documentation
Move cursor to ISO DATE; echo ISO date unless NOECHO is non-nil.
Interactively, goes to the first day of the specified week.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-iso.el.gz
;;;###cal-autoload
(defun calendar-iso-goto-week (date &optional noecho)
"Move cursor to ISO DATE; echo ISO date unless NOECHO is non-nil.
Interactively, goes to the first day of the specified week."
(interactive (calendar-iso-read-date))
(calendar-goto-date (calendar-gregorian-from-absolute
(calendar-iso-to-absolute date)))
(or noecho (calendar-iso-print-date)))