emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99372: Doc fix for current-time-stri


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99372: Doc fix for current-time-string and date-to-time (Bug#5408)
Date: Mon, 18 Jan 2010 11:29:00 -0500
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 99372
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2010-01-18 11:29:00 -0500
message:
  Doc fix for current-time-string and date-to-time (Bug#5408)
  
  * src/editfns.c (Fcurrent_time_string): Doc fix.
  * lisp/calendar/time-date.el (date-to-time): Doc fix.
modified:
  lisp/ChangeLog
  lisp/calendar/time-date.el
  src/ChangeLog
  src/editfns.c
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-01-18 04:44:36 +0000
+++ b/lisp/ChangeLog    2010-01-18 16:29:00 +0000
@@ -1,3 +1,7 @@
+2010-01-18  Chong Yidong  <address@hidden>
+
+       * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
+
 2010-01-18  Juanma Barranquero  <address@hidden>
 
        * cedet/ede/locate.el (ede-locate-file-in-project)

=== modified file 'lisp/calendar/time-date.el'
--- a/lisp/calendar/time-date.el        2010-01-13 08:35:10 +0000
+++ b/lisp/calendar/time-date.el        2010-01-18 16:29:00 +0000
@@ -98,7 +98,8 @@
 
 ;;;###autoload
 (defun date-to-time (date)
-  "Parse a string DATE that represents a date-time and return a time value."
+  "Parse a string DATE that represents a date-time and return a time value.
+If DATE lacks timezone information, GMT is assumed."
   (condition-case ()
       (apply 'encode-time
             (parse-time-string

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-01-16 20:20:32 +0000
+++ b/src/ChangeLog     2010-01-18 16:29:00 +0000
@@ -1,3 +1,7 @@
+2010-01-18  Chong Yidong  <address@hidden>
+
+       * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
+
 2010-01-16  Stefan Monnier  <address@hidden>
 
        * xterm.c (event_handler_gdk): Block input (Bug#5037).

=== modified file 'src/editfns.c'
--- a/src/editfns.c     2010-01-13 04:33:42 +0000
+++ b/src/editfns.c     2010-01-18 16:29:00 +0000
@@ -1897,7 +1897,7 @@
 }
 
 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 
1, 0,
-       doc: /* Return the current time, as a human-readable string.
+       doc: /* Return the current local time, as a human-readable string.
 Programs can use this function to decode a time,
 since the number of columns in each field is fixed
 if the year is in the range 1000-9999.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]