diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-07 09:52:39 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-07 09:52:39 +0000 |
commit | 694e4e3f17c01d2d1a8b4f5d4b9dd010c31785f8 (patch) | |
tree | 4fa78600722214ad40874617f57ea9ec1c36288d /gnu | |
parent | f557ff7a14e81d3a82f5743a6de080e04c75ae26 (diff) |
fix comments s/$Id$/Id/, and usage string.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/rcs/co/co.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/co/co.c b/gnu/usr.bin/rcs/co/co.c index 5b80764cbb4..ed986f62b86 100644 --- a/gnu/usr.bin/rcs/co/co.c +++ b/gnu/usr.bin/rcs/co/co.c @@ -28,6 +28,9 @@ Report problems and direct all questions to: /* * $Log: co.c,v $ + * Revision 1.3 1996/05/07 09:52:38 mickey + * fix comments s/$Id$/Id/, and usage string. + * * Revision 1.2 1996/04/19 12:40:04 mickey * -L<string> option added to support LOCALID behaviour. * maybe set up in RCSINIT environment variable. @@ -195,10 +198,10 @@ static struct hshentries *gendeltas; /* deltas to be generated */ static struct hshentry *targetdelta; /* final delta to be generated */ static struct stat workstat; -mainProg(coId, "co", "$Id: co.c,v 1.2 1996/04/19 12:40:04 mickey Exp $") +mainProg(coId, "co", "$Id: co.c,v 1.3 1996/05/07 09:52:38 mickey Exp $") { static char const cmdusage[] = - "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone file ..."; + "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone -LlocalId file ..."; char *a, **newargv; char const *author, *date, *rev, *state; @@ -314,7 +317,7 @@ mainProg(coId, "co", "$Id: co.c,v 1.2 1996/04/19 12:40:04 mickey Exp $") zone_set(a); break; - case 'L': /* add local $Id: co.c,v 1.2 1996/04/19 12:40:04 mickey Exp $ keyword string */ + case 'L': /* add local 'Id' keyword string */ setRCSlocalId(*argv+2); break; |