comparison src/editfns.c @ 5258:1ed4cefddd12

Add a couple of extra docstring backslashes, #'format-time-string 2010-09-05 Aidan Kehoe <kehoea@parhasard.net> * editfns.c (Fformat_time_string): Use two backslashes so that there is at least one present in the output of describe function, when describing the Roman month number syntax in this function's docstring. Thanks for provoking me to look at this, Stephen Turnbull.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 05 Sep 2010 19:22:37 +0100
parents 1537701f08a1
children af961911bcb2 308d34e9f07d
comparison
equal deleted inserted replaced
5257:30bf66dd3ca0 5258:1ed4cefddd12
1042 %X is a locale-specific synonym, which defaults to "%T" in the C locale. 1042 %X is a locale-specific synonym, which defaults to "%T" in the C locale.
1043 %y is replaced by the year without century (00-99). 1043 %y is replaced by the year without century (00-99).
1044 %Y is replaced by the year with century. 1044 %Y is replaced by the year with century.
1045 %z is replaced by the time zone as a numeric offset (e.g +0530, -0800 etc.) 1045 %z is replaced by the time zone as a numeric offset (e.g +0530, -0800 etc.)
1046 %Z is replaced by the time zone abbreviation. 1046 %Z is replaced by the time zone abbreviation.
1047 %\xe6 is replaced by the month as a lowercase Roman number (i-xii) 1047 %\\xe6 is replaced by the month as a lowercase Roman number (i-xii)
1048 %\xc6 is replaced by the month as an uppercase Roman number (I-XII) 1048 %\\xc6 is replaced by the month as an uppercase Roman number (I-XII)
1049 1049
1050 The number of options reflects the `strftime' function. 1050 The number of options reflects the `strftime' function.
1051 */ 1051 */
1052 (format_string, time_)) 1052 (format_string, time_))
1053 { 1053 {