diff options
| author | Markus Rost | 2002-10-05 04:32:00 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-10-05 04:32:00 +0000 |
| commit | a67a233bc83c90ff5389837d31fe0b90c1a9df9c (patch) | |
| tree | 4c9dbb31d0e56efa456a84166fd9ae6f8db69804 /src/editfns.c | |
| parent | f5965adaeb349d6f727c52f8637ff51983e7a0b8 (diff) | |
| download | emacs-a67a233bc83c90ff5389837d31fe0b90c1a9df9c.tar.gz emacs-a67a233bc83c90ff5389837d31fe0b90c1a9df9c.zip | |
(Fformat_time_string): Doc fix.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 8640111c167..3b71d592bd1 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1450,8 +1450,8 @@ Finally, %n is a newline, %t is a tab, %% is a literal %. | |||
| 1450 | Certain flags and modifiers are available with some format controls. | 1450 | Certain flags and modifiers are available with some format controls. |
| 1451 | The flags are `_', `-', `^' and `#'. For certain characters X, | 1451 | The flags are `_', `-', `^' and `#'. For certain characters X, |
| 1452 | %_X is like %X, but padded with blanks; %-X is like %X, | 1452 | %_X is like %X, but padded with blanks; %-X is like %X, |
| 1453 | ut without padding. %^X is like %X but with all textual | 1453 | but without padding. %^X is like %X, but with all textual |
| 1454 | characters up-cased; %#X is like %X but with letter-case of | 1454 | characters up-cased; %#X is like %X, but with letter-case of |
| 1455 | all textual characters reversed. | 1455 | all textual characters reversed. |
| 1456 | %NX (where N stands for an integer) is like %X, | 1456 | %NX (where N stands for an integer) is like %X, |
| 1457 | but takes up at least N (a number) positions. | 1457 | but takes up at least N (a number) positions. |