]> git.eshelyaron.com Git - emacs.git/commitdiff
(sunrise-sunset): Undo previous change.
authorRichard M. Stallman <rms@gnu.org>
Sun, 1 May 1994 20:18:39 +0000 (20:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 1 May 1994 20:18:39 +0000 (20:18 +0000)
lisp/calendar/solar.el

index 723980a6690824fa7a479f2ca5835f9576fbbd46..ce0570214a75372e052f354d568fdb04b275b2f1 100644 (file)
@@ -392,10 +392,10 @@ several minutes."
 ;;;###autoload
 (defun sunrise-sunset (&optional arg)
   "Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
-If called with an optional prefix argument, prompts for date.
+If called with an optional prefix argument, prompt for date.
 
-If called with an optional double prefix argument, prompts for longitude,
-latitude, time zone, and date.
+If called with an optional double prefix argument, prompt for longitude,
+latitude, time zone, and date, and always use standard time.
 
 This function is suitable for execution in a .emacs file."
  (interactive "p")
@@ -429,12 +429,10 @@ This function is suitable for execution in a .emacs file."
                  ((< calendar-time-zone 0)
                      (format "UTC%dmin" calendar-time-zone))
                  (t  (format "UTC+%dmin" calendar-time-zone)))))
-;;   Use outer context values always, unless you're going to prompt for
-;;   the values to use.  PKH
-;;        (calendar-daylight-savings-starts
-;;         (if (< arg 16) calendar-daylight-savings-starts))
-;;        (calendar-daylight-savings-ends
-;;         (if (< arg 16) calendar-daylight-savings-ends))
+        (calendar-daylight-savings-starts
+         (if (< arg 16) calendar-daylight-savings-starts))
+        (calendar-daylight-savings-ends
+         (if (< arg 16) calendar-daylight-savings-ends))
         (date (if (< arg 4) (calendar-current-date) (calendar-read-date)))
         (date-string (calendar-date-string date t))
         (time-string (solar-sunrise-sunset date))