Function: calendar-frame-1
calendar-frame-1 is a byte-compiled function defined in cal-x.el.gz.
Signature
(calendar-frame-1 FRAME)
Documentation
Subroutine used by calendar-frame-setup.
Runs calendar-after-frame-setup-hook, selects frame, iconifies if needed.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-x.el.gz
(defun calendar-frame-1 (frame)
"Subroutine used by `calendar-frame-setup'.
Runs `calendar-after-frame-setup-hook', selects frame, iconifies if needed."
(run-hooks 'calendar-after-frame-setup-hook)
(select-frame frame)
(if (eq 'icon (cdr (assoc 'visibility (frame-parameters frame))))
(iconify-or-deiconify-frame)))