summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/rcs/ci
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 05:05:38 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 05:05:38 +0000
commit2ad6f3dee6bc54535003f4ab26bbc587b7efa38c (patch)
treea3959baf797787918878bec6d58d6a0fb743ad0a /gnu/usr.bin/rcs/ci
parent4f960dd75f181e9fa2edc44324f15f0ab5c64b37 (diff)
downloadFreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.zip
FreeBSD-src-2ad6f3dee6bc54535003f4ab26bbc587b7efa38c.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'gnu/usr.bin/rcs/ci')
-rw-r--r--gnu/usr.bin/rcs/ci/Makefile2
-rw-r--r--gnu/usr.bin/rcs/ci/ci.c39
2 files changed, 22 insertions, 19 deletions
diff --git a/gnu/usr.bin/rcs/ci/Makefile b/gnu/usr.bin/rcs/ci/Makefile
index 3ac3d29..2fbb74f 100644
--- a/gnu/usr.bin/rcs/ci/Makefile
+++ b/gnu/usr.bin/rcs/ci/Makefile
@@ -1,5 +1,5 @@
PROG= ci
-SRCS= ci.c
+SRCS= ci.c
CFLAGS+= -I${.CURDIR}/../lib
LDADD= ${LIBRCS}
DPADD= ${LIBRCS}
diff --git a/gnu/usr.bin/rcs/ci/ci.c b/gnu/usr.bin/rcs/ci/ci.c
index 566747e..3d2e6f7 100644
--- a/gnu/usr.bin/rcs/ci/ci.c
+++ b/gnu/usr.bin/rcs/ci/ci.c
@@ -35,6 +35,9 @@ Report problems and direct all questions to:
/* $Log: ci.c,v $
+ * Revision 1.1.1.1 1993/06/18 04:22:10 jkh
+ * Updated GNU utilities
+ *
* Revision 5.21 1991/11/20 17:58:07 eggert
* Don't read the delta tree from a nonexistent RCS file.
*
@@ -114,37 +117,37 @@ Report problems and direct all questions to:
*
* Revision 4.9 89/05/01 15:10:54 narten
* changed copyright header to reflect current distribution rules
- *
+ *
* Revision 4.8 88/11/08 13:38:23 narten
* changes from root@seismo.CSS.GOV (Super User)
* -d with no arguments uses the mod time of the file it is checking in
- *
+ *
* Revision 4.7 88/08/09 19:12:07 eggert
* Make sure workfile is a regular file; use its mode if RCSfile doesn't have one.
* Use execv(), not system(); allow cc -R; remove lint.
* isatty(fileno(stdin)) -> ttystdin()
- *
+ *
* Revision 4.6 87/12/18 11:34:41 narten
* lint cleanups (from Guy Harris)
- *
+ *
* Revision 4.5 87/10/18 10:18:48 narten
* Updating version numbers. Changes relative to revision 1.1 are actually
* relative to 4.3
- *
+ *
* Revision 1.3 87/09/24 13:57:19 narten
- * Sources now pass through lint (if you ignore printf/sprintf/fprintf
+ * Sources now pass through lint (if you ignore printf/sprintf/fprintf
* warnings)
- *
+ *
* Revision 1.2 87/03/27 14:21:33 jenkins
* Port to suns
- *
+ *
* Revision 4.3 83/12/15 12:28:54 wft
* ci -u and ci -l now set mode of working file properly.
- *
+ *
* Revision 4.2 83/12/05 13:40:54 wft
* Merged with 3.9.1.1: added calls to clearerr(stdin).
* made rewriteflag external.
- *
+ *
* Revision 4.1 83/05/10 17:03:06 wft
* Added option -d and -w, and updated assingment of date, etc. to new delta.
* Added handling of default branches.
@@ -155,13 +158,13 @@ Report problems and direct all questions to:
* Removed calls to stat(); now done by pairfilenames().
* Changed most calls to catchints() with restoreints().
* Directed all interactive messages to stderr.
- *
+ *
* Revision 3.9.1.1 83/10/19 04:21:03 lepreau
* Added clearerr(stdin) to getlogmsg() for re-reading stdin.
- *
+ *
* Revision 3.9 83/02/15 15:25:44 wft
* 4.2 prerelease
- *
+ *
* Revision 3.9 83/02/15 15:25:44 wft
* Added call to fastcopy() to copy remainder of RCS file.
*
@@ -238,7 +241,7 @@ static struct hshentry newdelta; /* new delta to be inserted */
static struct stat workstat;
static struct Symrev *assoclst, *lastassoc;
-mainProg(ciId, "ci", "$Id: ci.c,v 5.21 1991/11/20 17:58:07 eggert Exp $")
+mainProg(ciId, "ci", "$Id: ci.c,v 1.1.1.1 1993/06/18 04:22:10 jkh Exp $")
{
static char const cmdusage[] =
"\nci usage: ci -{fklqru}[rev] -mmsg -{nN}name -sstate -t[textfile] -Vn file ...";
@@ -258,7 +261,7 @@ mainProg(ciId, "ci", "$Id: ci.c,v 5.21 1991/11/20 17:58:07 eggert Exp $")
int usestatdate; /* Use mod time of file for -d. */
mode_t newworkmode; /* mode for working file */
struct hshentry *workdelta;
-
+
setrid();
author = rev = state = textfile = nil;
@@ -321,7 +324,7 @@ mainProg(ciId, "ci", "$Id: ci.c,v 5.21 1991/11/20 17:58:07 eggert Exp $")
checksid(a);
addassoclst(false, a);
break;
-
+
case 'N':
if (!*a) {
error("missing symbolic name after -N");
@@ -494,7 +497,7 @@ mainProg(ciId, "ci", "$Id: ci.c,v 5.21 1991/11/20 17:58:07 eggert Exp $")
if (!addsyms(newdelta.num))
continue;
-
+
putadmin(frewrite);
puttree(Head,frewrite);
putdesc(false,textfile);
@@ -1151,7 +1154,7 @@ int flag;
char * sp;
{
struct Symrev *pt;
-
+
pt = talloc(struct Symrev);
pt->ssymbol = sp;
pt->override = flag;
OpenPOWER on IntegriCloud