aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2002-10-05 04:32:00 +0000
committerMarkus Rost2002-10-05 04:32:00 +0000
commita67a233bc83c90ff5389837d31fe0b90c1a9df9c (patch)
tree4c9dbb31d0e56efa456a84166fd9ae6f8db69804
parentf5965adaeb349d6f727c52f8637ff51983e7a0b8 (diff)
downloademacs-a67a233bc83c90ff5389837d31fe0b90c1a9df9c.tar.gz
emacs-a67a233bc83c90ff5389837d31fe0b90c1a9df9c.zip
(Fformat_time_string): Doc fix.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/editfns.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7eac9ad5ddf..9508a0daef4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-10-05 Markus Rost <rost@math.ohio-state.edu>
2
3 * editfns.c (Fformat_time_string): Doc fix.
4
12002-10-05 John Paul Wallington <jpw@shootybangbang.com> 52002-10-05 John Paul Wallington <jpw@shootybangbang.com>
2 6
3 * fns.c (Flength): Doc fix. 7 * fns.c (Flength): Doc fix.
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 %.
1450Certain flags and modifiers are available with some format controls. 1450Certain flags and modifiers are available with some format controls.
1451The flags are `_', `-', `^' and `#'. For certain characters X, 1451The 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,
1453ut without padding. %^X is like %X but with all textual 1453but without padding. %^X is like %X, but with all textual
1454characters up-cased; %#X is like %X but with letter-case of 1454characters up-cased; %#X is like %X, but with letter-case of
1455all textual characters reversed. 1455all 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,
1457but takes up at least N (a number) positions. 1457but takes up at least N (a number) positions.