diff options
| author | Eli Zaretskii | 2001-01-31 17:05:55 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-01-31 17:05:55 +0000 |
| commit | 7c132cba8bba0c85d8fe614a9165dad11d53e9dd (patch) | |
| tree | 10c0f2901e8a5e5d416c227834de4439a79eaab6 /src | |
| parent | 2441692dc8589566a410a841c8b45e34cae21b82 (diff) | |
| download | emacs-7c132cba8bba0c85d8fe614a9165dad11d53e9dd.tar.gz emacs-7c132cba8bba0c85d8fe614a9165dad11d53e9dd.zip | |
(Fformat_time_string): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/editfns.c | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9b9ccf777a0..4e4097f4053 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * editfns.c (Fformat_time_string): Doc fix. | ||
| 4 | |||
| 1 | 2001-01-31 Stefan Monnier <monnier@cs.yale.edu> | 5 | 2001-01-31 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 6 | ||
| 3 | * keymap.c (Fwhere_is_internal): Use the first valid binding | 7 | * keymap.c (Fwhere_is_internal): Use the first valid binding |
diff --git a/src/editfns.c b/src/editfns.c index 590d1771338..af895fbe437 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1462,8 +1462,11 @@ by text that describes the specified date and time in TIME:\n\ | |||
| 1462 | Finally, %n is a newline, %t is a tab, %% is a literal %.\n\ | 1462 | Finally, %n is a newline, %t is a tab, %% is a literal %.\n\ |
| 1463 | \n\ | 1463 | \n\ |
| 1464 | Certain flags and modifiers are available with some format controls.\n\ | 1464 | Certain flags and modifiers are available with some format controls.\n\ |
| 1465 | The flags are `_' and `-'. For certain characters X, %_X is like %X,\n\ | 1465 | The flags are `_', `-', `^' and `#'. For certain characters X,\n\ |
| 1466 | but padded with blanks; %-X is like %X, but without padding.\n\ | 1466 | %_X is like %X, but padded with blanks; %-X is like %X,\n\ |
| 1467 | ut without padding. %^X is like %X but with all textual\n\ | ||
| 1468 | characters up-cased; %#X is like %X but with letter-case of\n\ | ||
| 1469 | all textual characters reversed.\n\ | ||
| 1467 | %NX (where N stands for an integer) is like %X,\n\ | 1470 | %NX (where N stands for an integer) is like %X,\n\ |
| 1468 | but takes up at least N (a number) positions.\n\ | 1471 | but takes up at least N (a number) positions.\n\ |
| 1469 | The modifiers are `E' and `O'. For certain characters X,\n\ | 1472 | The modifiers are `E' and `O'. For certain characters X,\n\ |