1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

(time-to-day-in-year): Fix docstring.

This commit is contained in:
Juanma Barranquero 2004-04-20 16:40:07 +00:00
parent 06f4589ab8
commit 1525ea1e3a
2 changed files with 7 additions and 3 deletions

View 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.

View 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))