Variable: calendar-time-display-form

calendar-time-display-form is a customizable variable defined in solar.el.gz.

Value

(12-hours ":" minutes am-pm (if time-zone " (") time-zone
	  (if time-zone ")"))

Documentation

The pseudo-pattern that governs the way a time of day is formatted.

A pseudo-pattern is a list of expressions that can involve the keywords
12-hours, 24-hours, and minutes, all numbers in string form,
and am-pm and time-zone, both alphabetic strings.

For example, the form

   (24-hours ":" minutes
    (if time-zone " (") time-zone (if time-zone ")"))

would give military-style times like "21:07 (UTC)".

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/solar.el.gz
;; calendar-astro-to-absolute and v versa are cal-autoloads.
;;;(require 'cal-julian)


(defcustom calendar-time-display-form
  '(12-hours ":" minutes am-pm
             (if time-zone " (") time-zone (if time-zone ")"))
  "The pseudo-pattern that governs the way a time of day is formatted.

A pseudo-pattern is a list of expressions that can involve the keywords
`12-hours', `24-hours', and `minutes', all numbers in string form,
and `am-pm' and `time-zone', both alphabetic strings.

For example, the form

   (24-hours \":\" minutes
    (if time-zone \" (\") time-zone (if time-zone \")\"))

would give military-style times like \"21:07 (UTC)\"."
  :type 'sexp
  :risky t
  :group 'calendar)