Mercurial > emacs
changeset 35787:0f57662bf4a9
(Fformat_time_string): Doc fix.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 31 Jan 2001 17:04:25 +0000 |
parents | 3b32efc97931 |
children | f100c207f0e8 |
files | src/editfns.c |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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\