diff options
| author | Paul Eggert | 2019-02-25 11:33:51 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-02-25 11:34:43 -0800 |
| commit | e3bb6f90e999a6d71537806573c48b9ceb3fb413 (patch) | |
| tree | ce802f5d8b071ec7208755f192ef9c7880f5a699 /src | |
| parent | 0d49078ad80f54b810180a071e2b6b4bcc024851 (diff) | |
| download | emacs-e3bb6f90e999a6d71537806573c48b9ceb3fb413.tar.gz emacs-e3bb6f90e999a6d71537806573c48b9ceb3fb413.zip | |
format-time-string: document new '+' flag
* doc/lispref/os.texi (Time Parsing), etc/NEWS:
* src/timefns.c (Fformat_time_string): Document the new
behavior, added for compatibility with POSIX.1-2017.
Diffstat (limited to 'src')
| -rw-r--r-- | src/timefns.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/src/timefns.c b/src/timefns.c index 7e061228e2c..5beeaf57a25 100644 --- a/src/timefns.c +++ b/src/timefns.c | |||
| @@ -1267,7 +1267,7 @@ by text that describes the specified date and time in TIME: | |||
| 1267 | %c is the locale's date and time format. | 1267 | %c is the locale's date and time format. |
| 1268 | %x is the locale's "preferred" date format. | 1268 | %x is the locale's "preferred" date format. |
| 1269 | %D is like "%m/%d/%y". | 1269 | %D is like "%m/%d/%y". |
| 1270 | %F is the ISO 8601 date format (like "%Y-%m-%d"). | 1270 | %F is the ISO 8601 date format (like "%+4Y-%m-%d"). |
| 1271 | 1271 | ||
| 1272 | %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p". | 1272 | %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p". |
| 1273 | %X is the locale's "preferred" time format. | 1273 | %X is the locale's "preferred" time format. |
| @@ -1275,17 +1275,23 @@ by text that describes the specified date and time in TIME: | |||
| 1275 | Finally, %n is a newline, %t is a tab, %% is a literal %, and | 1275 | Finally, %n is a newline, %t is a tab, %% is a literal %, and |
| 1276 | unrecognized %-sequences stand for themselves. | 1276 | unrecognized %-sequences stand for themselves. |
| 1277 | 1277 | ||
| 1278 | Certain flags and modifiers are available with some format controls. | 1278 | A %-sequence can contain optional flags, field width, and a modifier |
| 1279 | The flags are `_', `-', `^' and `#'. For certain characters X, | 1279 | (in that order) after the `%'. The flags are: |
| 1280 | %_X is like %X, but padded with blanks; %-X is like %X, | 1280 | |
| 1281 | but without padding. %^X is like %X, but with all textual | 1281 | `-' Do not pad the field. |
| 1282 | characters up-cased; %#X is like %X, but with letter-case of | 1282 | `_' Pad with spaces. |
| 1283 | all textual characters reversed. | 1283 | `0' Pad with zeros. |
| 1284 | %NX (where N stands for an integer) is like %X, | 1284 | `+' Pad with zeros and put `+' before nonnegative year numbers with >4 digits. |
| 1285 | but takes up at least N (a number) positions. | 1285 | `^' Use upper case characters if possible. |
| 1286 | The modifiers are `E' and `O'. For certain characters X, | 1286 | `#' Use opposite case characters if possible. |
| 1287 | %EX is a locale's alternative version of %X; | 1287 | |
| 1288 | %OX is like %X, but uses the locale's number symbols. | 1288 | A field width N is an unsigned decimal integer with a leading digit nonzero. |
| 1289 | %NX is like %X, but takes up at least N positions. | ||
| 1290 | |||
| 1291 | The modifiers are: | ||
| 1292 | |||
| 1293 | `E' Use the locale's alternative version. | ||
| 1294 | `O' Use the locale's number symbols. | ||
| 1289 | 1295 | ||
| 1290 | For example, to produce full ISO 8601 format, use "%FT%T%z". | 1296 | For example, to produce full ISO 8601 format, use "%FT%T%z". |
| 1291 | 1297 | ||