]> git.eshelyaron.com Git - emacs.git/commitdiff
(time-to-day-in-year): Fix docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 20 Apr 2004 16:40:07 +0000 (16:40 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 20 Apr 2004 16:40:07 +0000 (16:40 +0000)
lisp/ChangeLog
lisp/calendar/time-date.el

index e637f78d2aedfc0d71cf90b09ec3d5e289310127..8ac677f025f6c5bbc6cf08adb54fcee622819ff8 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-20  Juanma Barranquero  <lektu@terra.es>
+
+       * calendar/time-date.el (time-to-day-in-year): Fix docstring.
+
 2004-04-20  Kenichi Handa  <handa@m17n.org>
 
        * international/quail.el (quail-lookup-key): New optional arg
@@ -15,8 +19,8 @@
 2004-04-20  Nick Roberts  <nick@nick.uklinux.net>
 
        * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
-       (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer) 
-       (gdb-frame-threads-buffer, gdb-frame-registers-buffer) 
+       (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
+       (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
        (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
        (gdb-frame-assembler-buffer): Improve behaviour with
        multiple frames.
index b36d5ab2f310532fa0d738d528924f60c26e3fb0..846231befe6134eccc3a3835af5cbbc0e49ee207 100644 (file)
@@ -149,7 +149,7 @@ DATE1 and DATE2 should be date-time strings."
 
 ;;;###autoload
 (defun time-to-day-in-year (time)
-  "Return the day number within the year of the date month/day/year."
+  "Return the day number within the year corresponding to TIME."
   (let* ((tim (decode-time time))
         (month (nth 4 tim))
         (day (nth 3 tim))