From 713dd62834d401cc7b9b394a4b916ab9e5e3d4d5 Mon Sep 17 00:00:00 2001 From: kris Date: Sat, 8 May 1999 10:22:15 +0000 Subject: Various spelling/formatting changes. Submitted by: Philippe Charnier --- bin/ed/buf.c | 4 ++-- bin/ed/cbc.c | 4 ++-- bin/ed/undo.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'bin/ed') diff --git a/bin/ed/buf.c b/bin/ed/buf.c index 511d83a..f3ee70b 100644 --- a/bin/ed/buf.c +++ b/bin/ed/buf.c @@ -1,4 +1,4 @@ -/* buf.c: This file contains the scratch-file buffer rountines for the +/* buf.c: This file contains the scratch-file buffer routines for the ed line editor. */ /*- * Copyright (c) 1993 Andrew Moore, Talke Studio. @@ -31,7 +31,7 @@ static char * const rcsid = "@(#)buf.c,v 1.4 1994/02/01 00:34:35 alm Exp"; #else static char * const rcsid = - "$Id: buf.c,v 1.14 1997/10/09 11:05:16 eivind Exp $"; + "$Id: buf.c,v 1.15 1997/12/31 12:25:33 helbig Exp $"; #endif #endif /* not lint */ diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c index dbae5f9..fba3609 100644 --- a/bin/ed/cbc.c +++ b/bin/ed/cbc.c @@ -42,7 +42,7 @@ static char * const rcsid = "@(#)cbc.c,v 1.2 1994/02/01 00:34:36 alm Exp"; #else static char * const rcsid = - "$Id: cbc.c,v 1.9 1997/02/22 14:03:12 peter Exp $"; + "$Id: cbc.c,v 1.10 1997/08/07 21:33:40 steve Exp $"; #endif #endif /* not lint */ @@ -124,7 +124,7 @@ init_des_cipher() /* initialize the initialization vector */ MEMZERO(ivec, 8); - /* intialize the padding vector */ + /* initialize the padding vector */ srand((unsigned) time((time_t *) 0)); for (i = 0; i < 8; i++) CHAR(pvec, i) = (char) (rand()/RAND_DIV); diff --git a/bin/ed/undo.c b/bin/ed/undo.c index 549a354..93fef88 100644 --- a/bin/ed/undo.c +++ b/bin/ed/undo.c @@ -30,7 +30,7 @@ static char * const rcsid = "@(#)undo.c,v 1.1 1994/02/01 00:34:44 alm Exp"; #else static char * const rcsid = - "$Id: undo.c,v 1.6 1997/02/22 14:03:20 peter Exp $"; + "$Id: undo.c,v 1.7 1997/08/07 21:33:47 steve Exp $"; #endif #endif /* not lint */ @@ -42,7 +42,7 @@ undo_t *ustack = NULL; /* undo stack */ long usize = 0; /* stack size variable */ long u_p = 0; /* undo stack pointer */ -/* push_undo_stack: return pointer to intialized undo node */ +/* push_undo_stack: return pointer to initialized undo node */ undo_t * push_undo_stack(type, from, to) int type; -- cgit v1.1