Function: cal-html-year-dir-ask-user

cal-html-year-dir-ask-user is a byte-compiled function defined in cal-html.el.gz.

Signature

(cal-html-year-dir-ask-user YEAR)

Documentation

Prompt for the html calendar output directory for four-digit YEAR.

Return the expanded directory name, which is based on cal-html-directory by default.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-html.el.gz
(defun cal-html-year-dir-ask-user (year)
  "Prompt for the html calendar output directory for four-digit YEAR.
Return the expanded directory name, which is based on
`cal-html-directory' by default."
  (expand-file-name (read-directory-name
                     "Enter HTML calendar directory name: "
                     (expand-file-name (format "%d" year)
                                       cal-html-directory))))