Variable: lunar-phase-names
lunar-phase-names is a customizable variable defined in lunar.el.gz.
Value
("New Moon" "First Quarter Moon" "Full Moon" "Last Quarter Moon")
Documentation
List of names for the lunar phases.
This variable was added, or its default value changed, in Emacs 23.2.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/lunar.el.gz
;; calendar-astro-to-absolute and v versa are cal-autoloads.
;;;(require 'cal-julian)
(defcustom lunar-phase-names
'("New Moon" "First Quarter Moon" "Full Moon" "Last Quarter Moon")
"List of names for the lunar phases."
:type '(list
(string :tag "New Moon")
(string :tag "First Quarter Moon")
(string :tag "Full Moon")
(string :tag "Last Quarter Moon"))
:group 'calendar
:version "23.2")