diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c index e65bd34da87..f6f5ccc9480 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2038,11 +2038,11 @@ by text that describes the specified date and time in TIME: | |||
| 2038 | only blank-padded, %l is like %I blank-padded. | 2038 | only blank-padded, %l is like %I blank-padded. |
| 2039 | %p is the locale's equivalent of either AM or PM. | 2039 | %p is the locale's equivalent of either AM or PM. |
| 2040 | %q is the calendar quarter (1–4). | 2040 | %q is the calendar quarter (1–4). |
| 2041 | %M is the minute. | 2041 | %M is the minute (00-59). |
| 2042 | %S is the second. | 2042 | %S is the second (00-59; 00-60 on platforms with leap seconds) |
| 2043 | %N is the nanosecond, %6N the microsecond, %3N the millisecond, etc. | ||
| 2044 | %Z is the time zone name, %z is the numeric form. | ||
| 2045 | %s is the number of seconds since 1970-01-01 00:00:00 +0000. | 2043 | %s is the number of seconds since 1970-01-01 00:00:00 +0000. |
| 2044 | %N is the nanosecond, %6N the microsecond, %3N the millisecond, etc. | ||
| 2045 | %Z is the time zone abbreviation, %z is the numeric form. | ||
| 2046 | 2046 | ||
| 2047 | %c is the locale's date and time format. | 2047 | %c is the locale's date and time format. |
| 2048 | %x is the locale's "preferred" date format. | 2048 | %x is the locale's "preferred" date format. |
| @@ -2052,7 +2052,8 @@ by text that describes the specified date and time in TIME: | |||
| 2052 | %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p". | 2052 | %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p". |
| 2053 | %X is the locale's "preferred" time format. | 2053 | %X is the locale's "preferred" time format. |
| 2054 | 2054 | ||
| 2055 | Finally, %n is a newline, %t is a tab, %% is a literal %. | 2055 | Finally, %n is a newline, %t is a tab, %% is a literal %, and |
| 2056 | unrecognized %-sequences stand for themselves. | ||
| 2056 | 2057 | ||
| 2057 | Certain flags and modifiers are available with some format controls. | 2058 | Certain flags and modifiers are available with some format controls. |
| 2058 | The flags are `_', `-', `^' and `#'. For certain characters X, | 2059 | The flags are `_', `-', `^' and `#'. For certain characters X, |