diff options
author | Steve Price <steve@FreeBSD.org> | 1997-08-07 21:42:17 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1997-08-07 21:42:17 +0000 |
commit | 380fdd7d7ea5ad81bbf682a2c7bbde3dd5cf0dba (patch) | |
tree | dcebd97e13c89dc8953bab522cd52d653b3c492a /bin/csh/hist.c | |
parent | 395f4bf0befc265077a5774bb682eb1dc21c1580 (diff) | |
download | src-test2-380fdd7d7ea5ad81bbf682a2c7bbde3dd5cf0dba.tar.gz src-test2-380fdd7d7ea5ad81bbf682a2c7bbde3dd5cf0dba.zip |
Notes
Diffstat (limited to 'bin/csh/hist.c')
-rw-r--r-- | bin/csh/hist.c | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/bin/csh/hist.c b/bin/csh/hist.c index c90dd66565a5..fcc565d2cf4b 100644 --- a/bin/csh/hist.c +++ b/bin/csh/hist.c @@ -29,12 +29,15 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $Id$ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 5/31/93"; +#else +static const char rcsid[] = + "$Id: hist.c,v 1.4 1997/02/22 14:01:59 peter Exp $"; +#endif #endif /* not lint */ #include <sys/types.h> @@ -56,8 +59,8 @@ void savehist(sp) struct wordent *sp; { - register struct Hist *hp, *np; - register int histlen = 0; + struct Hist *hp, *np; + int histlen = 0; Char *cp; /* throw away null lines */ @@ -65,7 +68,7 @@ savehist(sp) return; cp = value(STRhistory); if (*cp) { - register Char *p = cp; + Char *p = cp; while (*p) { if (!Isdigit(*p)) { @@ -86,10 +89,10 @@ savehist(sp) struct Hist * enthist(event, lp, docopy) int event; - register struct wordent *lp; + struct wordent *lp; bool docopy; { - register struct Hist *np; + struct Hist *np; np = (struct Hist *) xmalloc((size_t) sizeof(*np)); np->Hnum = np->Href = event; @@ -109,7 +112,7 @@ enthist(event, lp, docopy) static void hfree(hp) - register struct Hist *hp; + struct Hist *hp; { freelex(&hp->Hlex); @@ -177,7 +180,7 @@ dohist1(hp, np, rflg, hflg) static void phist(hp, hflg) - register struct Hist *hp; + struct Hist *hp; int hflg; { if (hflg == 0) |