# HG changeset patch # User Eli Zaretskii # Date 980960665 0 # Node ID 0f57662bf4a988d33ad16fd15d1082ee6f86ee9e # Parent 3b32efc9793173c3a122d3345686bd36bd593a1b (Fformat_time_string): Doc fix. diff -r 3b32efc97931 -r 0f57662bf4a9 src/editfns.c --- a/src/editfns.c Wed Jan 31 16:12:41 2001 +0000 +++ b/src/editfns.c Wed Jan 31 17:04:25 2001 +0000 @@ -1462,8 +1462,11 @@ Finally, %n is a newline, %t is a tab, %% is a literal %.\n\ \n\ Certain flags and modifiers are available with some format controls.\n\ -The flags are `_' and `-'. For certain characters X, %_X is like %X,\n\ -but padded with blanks; %-X is like %X, but without padding.\n\ +The flags are `_', `-', `^' and `#'. For certain characters X,\n\ +%_X is like %X, but padded with blanks; %-X is like %X,\n\ +ut without padding. %^X is like %X but with all textual\n\ +characters up-cased; %#X is like %X but with letter-case of\n\ +all textual characters reversed.\n\ %NX (where N stands for an integer) is like %X,\n\ but takes up at least N (a number) positions.\n\ The modifiers are `E' and `O'. For certain characters X,\n\