Date and Timebrief-date*month-precedes-date*GoTo Top

*month-precedes-date*   [Variable]

Purpose
Control month and date ordering for GBBopen Tools date and time entities.

Package   :gbbopen-tools (home package is :module-manager)

Module   :module-manager

Value type   A generalized boolean

Initial value   True

See also
    brief-date
    brief-date-and-time
    parse-date

Examples
Toggle between date formatting options:

  > (let ((*month-precedes-date* t))
      (brief-date-and-time))
  "Feb 16 12:11"
  > (let ((*month-precedes-date* nil))
      (brief-date-and-time))
  "16 Feb 12:11"
  >

Note
This variable is defined in the :module-manager module in order to make it available as early as possible.


The GBBopen Project


Date and Timebrief-date*month-precedes-date*GoTo Top