]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix docstring of format-time-string to include %F.
authorRüdiger Sonderfeld <ruediger@c-plusplus.de>
Wed, 11 Dec 2013 14:42:55 +0000 (15:42 +0100)
committerRüdiger Sonderfeld <ruediger@c-plusplus.de>
Wed, 11 Dec 2013 14:42:55 +0000 (15:42 +0100)
See discussion of Bug#15816.

* editfns.c (Fformat_time_string): Mention %F in the doc.

src/ChangeLog
src/editfns.c

index d8bbe5a97be5e1cdcfcae79864b149bb1c58f6a4..8c19c83378a67e3172607fee91e4d9e4a2eb667e 100644 (file)
@@ -1,3 +1,7 @@
+2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
+
+       * editfns.c (Fformat_time_string): Mention %F in the doc.
+
 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
 
        * window.c (resize_frame_windows): Don't return immediately when
index 8e47d1f82e463acec85a823bbac7d9026c00731f..f67b95a8e814868118a2a1bcaceaca0dfa5e2bad 100644 (file)
@@ -1723,6 +1723,7 @@ by text that describes the specified date and time in TIME:
 %c is the locale's date and time format.
 %x is the locale's "preferred" date format.
 %D is like "%m/%d/%y".
+%F is the ISO 8601 date format (like "%Y-%m-%d").
 
 %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
 %X is the locale's "preferred" time format.
@@ -1741,7 +1742,7 @@ The modifiers are `E' and `O'.  For certain characters X,
 %EX is a locale's alternative version of %X;
 %OX is like %X, but uses the locale's number symbols.
 
-For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z".
+For example, to produce full ISO 8601 format, use "%FT%T%z".
 
 usage: (format-time-string FORMAT-STRING &optional TIME UNIVERSAL)  */)
   (Lisp_Object format_string, Lisp_Object timeval, Lisp_Object universal)