aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-06-04 06:40:13 +0000
committerGlenn Morris2009-06-04 06:40:13 +0000
commit8682defdaad3a4f0ef56e1187bab35ef4dfc5c24 (patch)
tree57c7ce6a0ea6b06bca5bfeaaa4d9e9f962903501
parent910565284a6fd361708d559abc3b06037f197e21 (diff)
downloademacs-8682defdaad3a4f0ef56e1187bab35ef4dfc5c24.tar.gz
emacs-8682defdaad3a4f0ef56e1187bab35ef4dfc5c24.zip
(solar-n-hemi-seasons, solar-s-hemi-seasons):
Make into defcustoms. (Bug#3429)
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calendar/solar.el25
2 files changed, 23 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d4bacc42aff..24308678387 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-06-04 Glenn Morris <rgm@gnu.org>
2
3 * calendar/solar.el (solar-n-hemi-seasons, solar-s-hemi-seasons):
4 Make into defcustoms. (Bug#3429)
5
12009-06-01 Chong Yidong <cyd@stupidchicken.com> 62009-06-01 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * international/README: New file. 8 * international/README: New file.
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el
index a4845ea607a..78c716f9f97 100644
--- a/lisp/calendar/solar.el
+++ b/lisp/calendar/solar.el
@@ -147,16 +147,27 @@ delta. At present, delta = 0.01 degrees, so the value of the variable
147 :type 'number 147 :type 'number
148 :group 'calendar) 148 :group 'calendar)
149 149
150;;; End of user options. 150(defcustom solar-n-hemi-seasons
151
152
153(defconst solar-n-hemi-seasons
154 '("Vernal Equinox" "Summer Solstice" "Autumnal Equinox" "Winter Solstice") 151 '("Vernal Equinox" "Summer Solstice" "Autumnal Equinox" "Winter Solstice")
155 "List of season changes for the northern hemisphere.") 152 "List of season changes for the northern hemisphere."
153 :type '(list
154 (string :tag "Vernal Equinox")
155 (string :tag "Summer Solstice")
156 (string :tag "Autumnal Equinox")
157 (string :tag "Winter Solstice"))
158 :group 'calendar)
156 159
157(defconst solar-s-hemi-seasons 160(defcustom solar-s-hemi-seasons
158 '("Autumnal Equinox" "Winter Solstice" "Vernal Equinox" "Summer Solstice") 161 '("Autumnal Equinox" "Winter Solstice" "Vernal Equinox" "Summer Solstice")
159 "List of season changes for the southern hemisphere.") 162 "List of season changes for the southern hemisphere."
163 :type '(list
164 (string :tag "Autumnal Equinox")
165 (string :tag "Winter Solstice")
166 (string :tag "Vernal Equinox")
167 (string :tag "Summer Solstice"))
168 :group 'calendar)
169
170;;; End of user options.
160 171
161(defvar solar-sidereal-time-greenwich-midnight nil 172(defvar solar-sidereal-time-greenwich-midnight nil
162 "Sidereal time at Greenwich at midnight (universal time).") 173 "Sidereal time at Greenwich at midnight (universal time).")