summaryrefslogtreecommitdiff
path: root/lib-src/=rcs2log
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1992-09-27 01:55:21 +0000
committerRoland McGrath <roland@gnu.org>1992-09-27 01:55:21 +0000
commit7f34e47b5627f91b3bb24681bada6e7793dfba90 (patch)
treeb6c8bd28141918c83f0e812a1878e2925e0bf087 /lib-src/=rcs2log
parent4f84bcc6005ca422ba414b1faa4c2886de23b60a (diff)
downloademacs-7f34e47b5627f91b3bb24681bada6e7793dfba90.tar.gz
%.2d -> %02d
Diffstat (limited to 'lib-src/=rcs2log')
-rw-r--r--lib-src/=rcs2log4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/=rcs2log b/lib-src/=rcs2log
index 30af68054f5..2a0ae19e7e1 100644
--- a/lib-src/=rcs2log
+++ b/lib-src/=rcs2log
@@ -2,7 +2,7 @@
# RCS to ChangeLog generator
-# $Id: rcs2log,v 1.6 1992/05/08 21:45:00 eggert Exp eggert $
+# $Id: rcs2log,v 1.2 1992/09/27 01:55:21 roland Exp $
# Generate a change log prefix from RCS/* and the existing ChangeLog (if any).
# Output the new prefix to standard output.
@@ -42,7 +42,7 @@ then
# It's a good thing `rlog' doesn't mind a time ending in `:60'.
e='
/^... ... [ 0-9][0-9] [ 0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9]+ /{
- printf "%s%.2d %s\n", substr($0,1,17), substr($0,18,2)+1, $5
+ printf "%s%02d %s\n", substr($0,1,17), substr($0,18,2)+1, $5
exit
}
'