comparison src/editfns.c @ 47763:da8405c812f2

(Fformat_time_string): Doc fix.
author Markus Rost <rost@math.uni-bielefeld.de>
date Sat, 05 Oct 2002 04:31:40 +0000
parents 40c8bb63c063
children 7ac7ca5ac550
comparison
equal deleted inserted replaced
47762:aa5414c0e056 47763:da8405c812f2
1448 Finally, %n is a newline, %t is a tab, %% is a literal %. 1448 Finally, %n is a newline, %t is a tab, %% is a literal %.
1449 1449
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.
1458 The modifiers are `E' and `O'. For certain characters X, 1458 The modifiers are `E' and `O'. For certain characters X,
1459 %EX is a locale's alternative version of %X; 1459 %EX is a locale's alternative version of %X;