aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRoland McGrath1992-09-27 01:55:21 +0000
committerRoland McGrath1992-09-27 01:55:21 +0000
commit1d30b62aa7d30ebfd9fd5cf3101f153b9852ce4a (patch)
tree6d12fc1f25ee2781c46453ca7ef1c1b07b3f768d /lib-src
parent67242a23d008d56621936191a80337081a3c4e6e (diff)
downloademacs-1d30b62aa7d30ebfd9fd5cf3101f153b9852ce4a.tar.gz
emacs-1d30b62aa7d30ebfd9fd5cf3101f153b9852ce4a.zip
%.2d -> %02d
Diffstat (limited to 'lib-src')
-rwxr-xr-xlib-src/rcs2log4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/rcs2log b/lib-src/rcs2log
index 30af68054f5..2a0ae19e7e1 100755
--- a/lib-src/rcs2log
+++ b/lib-src/rcs2log
@@ -2,7 +2,7 @@
2 2
3# RCS to ChangeLog generator 3# RCS to ChangeLog generator
4 4
5# $Id: rcs2log,v 1.6 1992/05/08 21:45:00 eggert Exp eggert $ 5# $Id: rcs2log,v 1.2 1992/09/27 01:55:21 roland Exp $
6 6
7# Generate a change log prefix from RCS/* and the existing ChangeLog (if any). 7# Generate a change log prefix from RCS/* and the existing ChangeLog (if any).
8# Output the new prefix to standard output. 8# Output the new prefix to standard output.
@@ -42,7 +42,7 @@ then
42 # It's a good thing `rlog' doesn't mind a time ending in `:60'. 42 # It's a good thing `rlog' doesn't mind a time ending in `:60'.
43 e=' 43 e='
44 /^... ... [ 0-9][0-9] [ 0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9]+ /{ 44 /^... ... [ 0-9][0-9] [ 0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9]+ /{
45 printf "%s%.2d %s\n", substr($0,1,17), substr($0,18,2)+1, $5 45 printf "%s%02d %s\n", substr($0,1,17), substr($0,18,2)+1, $5
46 exit 46 exit
47 } 47 }
48 ' 48 '