Function: timeclock-completing-read

timeclock-completing-read is a byte-compiled function defined in timeclock.el.gz.

This function is obsolete since 27.1; use completing-read instead.

Signature

(timeclock-completing-read PROMPT ALIST &optional DEFAULT)

Documentation

A version of completing-read.

PROMPT, ALIST and DEFAULT are used for the PROMPT, COLLECTION and DEF arguments of completing-read.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
(defun timeclock-completing-read (prompt alist &optional default)
  "A version of `completing-read'.
PROMPT, ALIST and DEFAULT are used for the PROMPT, COLLECTION and DEF
arguments of `completing-read'."
  (declare (obsolete completing-read "27.1"))
  (completing-read prompt alist nil nil nil nil default))