Function: todo-read-dayname

todo-read-dayname is a byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-read-dayname)

Documentation

Choose name of a day of the week with completion and return it.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-read-dayname ()
  "Choose name of a day of the week with completion and return it."
  (let ((completion-ignore-case todo-completion-ignore-case))
    (completing-read "Enter a day name: "
		     (append calendar-day-name-array nil)
		     nil t)))