From 2543e3e6515329ad3a155c18f465c9cabca58bd7 Mon Sep 17 00:00:00 2001 From: lukem Date: Sat, 11 Jan 1997 06:47:47 +0000 Subject: [PATCH] RCSid police editline first appeared in 4.4BSD not NetBSD1.0 --- lib/libedit/Makefile | 1 + lib/libedit/TEST/test.c | 6 ++++++ lib/libedit/chared.c | 6 ++++++ lib/libedit/chared.h | 2 ++ lib/libedit/common.c | 6 ++++++ lib/libedit/editline.3 | 8 ++++---- lib/libedit/editrc.5 | 6 +++--- lib/libedit/el.c | 6 ++++++ lib/libedit/el.h | 2 ++ lib/libedit/emacs.c | 6 ++++++ lib/libedit/hist.c | 6 ++++++ lib/libedit/hist.h | 2 ++ lib/libedit/histedit.h | 2 ++ lib/libedit/history.c | 2 ++ lib/libedit/key.c | 6 ++++++ lib/libedit/key.h | 2 ++ lib/libedit/makelist | 1 + lib/libedit/map.c | 6 ++++++ lib/libedit/map.h | 2 ++ lib/libedit/parse.c | 10 +++++++++- lib/libedit/parse.h | 2 ++ lib/libedit/prompt.c | 6 ++++++ lib/libedit/prompt.h | 2 ++ lib/libedit/read.c | 8 +++++++- lib/libedit/refresh.c | 6 ++++++ lib/libedit/refresh.h | 2 ++ lib/libedit/search.c | 6 ++++++ lib/libedit/search.h | 2 ++ lib/libedit/sig.c | 6 ++++++ lib/libedit/sig.h | 2 ++ lib/libedit/sys.h | 2 ++ lib/libedit/term.c | 6 ++++++ lib/libedit/term.h | 2 ++ lib/libedit/termcap.h | 2 ++ lib/libedit/tokenizer.c | 6 ++++++ lib/libedit/tokenizer.h | 2 ++ lib/libedit/tty.c | 6 ++++++ lib/libedit/tty.h | 2 ++ lib/libedit/vi.c | 6 ++++++ lib/libterm/termcap.h | 2 ++ 40 files changed, 157 insertions(+), 9 deletions(-) diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index 62ea4a69370e..c3487a336ee4 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -1,3 +1,4 @@ +# $NetBSD: Makefile,v 1.6 1997/01/11 06:47:47 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 6/4/93 LIB= edit diff --git a/lib/libedit/TEST/test.c b/lib/libedit/TEST/test.c index f0ae4ebc97e0..cc2202df3b3c 100644 --- a/lib/libedit/TEST/test.c +++ b/lib/libedit/TEST/test.c @@ -1,3 +1,5 @@ +/* $NetBSD */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -41,7 +43,11 @@ static char copyright[] = #endif /* not lint */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)test.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/chared.c b/lib/libedit/chared.c index 5a393a762484..82aa089d19b2 100644 --- a/lib/libedit/chared.c +++ b/lib/libedit/chared.c @@ -1,3 +1,5 @@ +/* $NetBSD: chared.c,v 1.2 1997/01/11 06:47:48 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)chared.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: chared.c,v 1.2 1997/01/11 06:47:48 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/chared.h b/lib/libedit/chared.h index 20da6c87a6db..4e7c28587f01 100644 --- a/lib/libedit/chared.h +++ b/lib/libedit/chared.h @@ -1,3 +1,5 @@ +/* $NetBSD: chared.h,v 1.2 1997/01/11 06:47:49 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/common.c b/lib/libedit/common.c index 696da528e510..9a87971fe793 100644 --- a/lib/libedit/common.c +++ b/lib/libedit/common.c @@ -1,3 +1,5 @@ +/* $NetBSD: common.c,v 1.2 1997/01/11 06:47:50 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)common.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: common.c,v 1.2 1997/01/11 06:47:50 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/editline.3 b/lib/libedit/editline.3 index 07467471f885..2b6dd97e8ab4 100644 --- a/lib/libedit/editline.3 +++ b/lib/libedit/editline.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: editline.3,v 1.2 1997/01/11 06:26:30 lukem Exp $ +.\" $NetBSD: editline.3,v 1.3 1997/01/11 06:47:51 lukem Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -33,8 +33,8 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd January 9, 1997 -.Os NetBSD +.Dd January 11, 1997 +.Os BSD 4.4 .Dt EDITLINE 3 .Sh NAME .Nm editline , @@ -511,7 +511,7 @@ Save the history list to The .Nm library first appeared in -.Nx 1.0 . +.Bx 4.4 . .Sh AUTHORS The .Nm diff --git a/lib/libedit/editrc.5 b/lib/libedit/editrc.5 index 39da88ef94bd..64aa34ff321b 100644 --- a/lib/libedit/editrc.5 +++ b/lib/libedit/editrc.5 @@ -1,4 +1,4 @@ -.\" $NetBSD: editrc.5,v 1.1 1997/01/09 13:12:16 lukem Exp $ +.\" $NetBSD: editrc.5,v 1.2 1997/01/11 06:47:52 lukem Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -33,8 +33,8 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd January 9, 1997 -.Os NetBSD +.Dd January 11, 1997 +.Os BSD 4.4 .Dt EDITRC 5 .Sh NAME .Nm editrc diff --git a/lib/libedit/el.c b/lib/libedit/el.c index 7314477a69ac..fc100c1c859a 100644 --- a/lib/libedit/el.c +++ b/lib/libedit/el.c @@ -1,3 +1,5 @@ +/* $NetBSD: el.c,v 1.2 1997/01/11 06:47:53 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94"; +#else +static char rcsid[] = "$NetBSD: el.c,v 1.2 1997/01/11 06:47:53 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/el.h b/lib/libedit/el.h index 77cce15a3d45..ec3d53845b18 100644 --- a/lib/libedit/el.h +++ b/lib/libedit/el.h @@ -1,3 +1,5 @@ +/* $NetBSD: el.h,v 1.2 1997/01/11 06:47:53 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/emacs.c b/lib/libedit/emacs.c index 273de1079f7b..a1f84c298d06 100644 --- a/lib/libedit/emacs.c +++ b/lib/libedit/emacs.c @@ -1,3 +1,5 @@ +/* $NetBSD: emacs.c,v 1.3 1997/01/11 06:47:54 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)emacs.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: emacs.c,v 1.3 1997/01/11 06:47:54 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/hist.c b/lib/libedit/hist.c index 394df63e9d3e..7e46a48808d8 100644 --- a/lib/libedit/hist.c +++ b/lib/libedit/hist.c @@ -1,3 +1,5 @@ +/* $NetBSD: hist.c,v 1.2 1997/01/11 06:47:55 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)hist.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: hist.c,v 1.2 1997/01/11 06:47:55 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/hist.h b/lib/libedit/hist.h index dff3968fd1fb..af6d64914742 100644 --- a/lib/libedit/hist.h +++ b/lib/libedit/hist.h @@ -1,3 +1,5 @@ +/* $NetBSD: hist.h,v 1.3 1997/01/11 06:47:56 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/histedit.h b/lib/libedit/histedit.h index d3c32cc5b63f..6c612af83418 100644 --- a/lib/libedit/histedit.h +++ b/lib/libedit/histedit.h @@ -1,3 +1,5 @@ +/* $NetBSD: histedit.h,v 1.3 1997/01/11 06:47:56 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/history.c b/lib/libedit/history.c index 9594207a840e..5e192f4f5d30 100644 --- a/lib/libedit/history.c +++ b/lib/libedit/history.c @@ -1,3 +1,5 @@ +/* $NetBSD: history.c,v 1.3 1997/01/11 06:47:57 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/key.c b/lib/libedit/key.c index 058da0e7f435..fab5969d720f 100644 --- a/lib/libedit/key.c +++ b/lib/libedit/key.c @@ -1,3 +1,5 @@ +/* $NetBSD: key.c,v 1.2 1997/01/11 06:47:58 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)key.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: key.c,v 1.2 1997/01/11 06:47:58 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/key.h b/lib/libedit/key.h index 2ed3afc8fe08..c24ddc54907f 100644 --- a/lib/libedit/key.h +++ b/lib/libedit/key.h @@ -1,3 +1,5 @@ +/* $NetBSD: key.h,v 1.2 1997/01/11 06:47:59 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/makelist b/lib/libedit/makelist index 7c4bebc6862b..507364887e5c 100644 --- a/lib/libedit/makelist +++ b/lib/libedit/makelist @@ -1,4 +1,5 @@ #!/bin/sh - +# $NetBSD: makelist,v 1.3 1997/01/11 06:48:00 lukem Exp $ # # Copyright (c) 1992, 1993 # The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/map.c b/lib/libedit/map.c index db26f990eda8..5782dfefccf6 100644 --- a/lib/libedit/map.c +++ b/lib/libedit/map.c @@ -1,3 +1,5 @@ +/* $NetBSD: map.c,v 1.3 1997/01/11 06:48:00 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)map.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: map.c,v 1.3 1997/01/11 06:48:00 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/map.h b/lib/libedit/map.h index 71c93b4a21e2..a73181b57e73 100644 --- a/lib/libedit/map.h +++ b/lib/libedit/map.h @@ -1,3 +1,5 @@ +/* $NetBSD: map.h,v 1.2 1997/01/11 06:48:01 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/parse.c b/lib/libedit/parse.c index ffe40ed386b3..c15cf274d97e 100644 --- a/lib/libedit/parse.c +++ b/lib/libedit/parse.c @@ -1,3 +1,5 @@ +/* $NetBSD: parse.c,v 1.4 1997/01/11 06:48:02 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: parse.c,v 1.4 1997/01/11 06:48:02 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* @@ -45,8 +51,10 @@ static char sccsid[] = "@(#)parse.c 8.1 (Berkeley) 6/4/93"; * * bind * echotc - * settc * gettc + * history + * settc + * setty */ #include "sys.h" #include "el.h" diff --git a/lib/libedit/parse.h b/lib/libedit/parse.h index 263076b30a5a..76fddf2e06ac 100644 --- a/lib/libedit/parse.h +++ b/lib/libedit/parse.h @@ -1,3 +1,5 @@ +/* $NetBSD: parse.h,v 1.2 1997/01/11 06:48:03 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/prompt.c b/lib/libedit/prompt.c index cea7ad7d1334..8999c141194b 100644 --- a/lib/libedit/prompt.c +++ b/lib/libedit/prompt.c @@ -1,3 +1,5 @@ +/* $NetBSD: prompt.c,v 1.2 1997/01/11 06:48:04 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)prompt.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: prompt.c,v 1.2 1997/01/11 06:48:04 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/prompt.h b/lib/libedit/prompt.h index a624fc053e25..4734ae11b954 100644 --- a/lib/libedit/prompt.h +++ b/lib/libedit/prompt.h @@ -1,3 +1,5 @@ +/* $NetBSD: prompt.h,v 1.2 1997/01/11 06:48:05 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/read.c b/lib/libedit/read.c index ccfc88b8f59d..86983c8a45dd 100644 --- a/lib/libedit/read.c +++ b/lib/libedit/read.c @@ -1,3 +1,5 @@ +/* $NetBSD: read.c,v 1.2 1997/01/11 06:48:06 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,9 +37,13 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93"; - +#else +static char rcsid[] = "$NetBSD: read.c,v 1.2 1997/01/11 06:48:06 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ + /* * read.c: Clean this junk up! This is horrible code. * Terminal read functions diff --git a/lib/libedit/refresh.c b/lib/libedit/refresh.c index b64d0119c6eb..304b806e5edd 100644 --- a/lib/libedit/refresh.c +++ b/lib/libedit/refresh.c @@ -1,3 +1,5 @@ +/* $NetBSD: refresh.c,v 1.2 1997/01/11 06:48:07 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)refresh.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: refresh.c,v 1.2 1997/01/11 06:48:07 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/refresh.h b/lib/libedit/refresh.h index 4fe50bc9aa31..30533d19dda3 100644 --- a/lib/libedit/refresh.h +++ b/lib/libedit/refresh.h @@ -1,3 +1,5 @@ +/* $NetBSD: refresh.h,v 1.2 1997/01/11 06:48:08 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/search.c b/lib/libedit/search.c index 29b2f6f5234d..866c509ac3c0 100644 --- a/lib/libedit/search.c +++ b/lib/libedit/search.c @@ -1,3 +1,5 @@ +/* $NetBSD: search.c,v 1.3 1997/01/11 06:48:09 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)search.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: search.c,v 1.3 1997/01/11 06:48:09 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/search.h b/lib/libedit/search.h index 51c58b4ab5ee..3df54865feef 100644 --- a/lib/libedit/search.h +++ b/lib/libedit/search.h @@ -1,3 +1,5 @@ +/* $NetBSD: search.h,v 1.2 1997/01/11 06:48:09 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/sig.c b/lib/libedit/sig.c index 94ab4bb8380b..edc2df91004e 100644 --- a/lib/libedit/sig.c +++ b/lib/libedit/sig.c @@ -1,3 +1,5 @@ +/* $NetBSD: sig.c,v 1.2 1997/01/11 06:48:10 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)sig.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: sig.c,v 1.2 1997/01/11 06:48:10 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/sig.h b/lib/libedit/sig.h index 98da74f44c42..bb05def18060 100644 --- a/lib/libedit/sig.h +++ b/lib/libedit/sig.h @@ -1,3 +1,5 @@ +/* $NetBSD: sig.h,v 1.2 1997/01/11 06:48:11 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/sys.h b/lib/libedit/sys.h index eae20f61b8d1..637b6a332d7a 100644 --- a/lib/libedit/sys.h +++ b/lib/libedit/sys.h @@ -1,3 +1,5 @@ +/* $NetBSD: sys.h,v 1.3 1997/01/11 06:48:12 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/term.c b/lib/libedit/term.c index 061eb38ce22f..669ab8b16489 100644 --- a/lib/libedit/term.c +++ b/lib/libedit/term.c @@ -1,3 +1,5 @@ +/* $NetBSD: term.c,v 1.7 1997/01/11 06:48:13 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)term.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: term.c,v 1.7 1997/01/11 06:48:13 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/term.h b/lib/libedit/term.h index aa3cd68b2b74..73347cff1d2c 100644 --- a/lib/libedit/term.h +++ b/lib/libedit/term.h @@ -1,3 +1,5 @@ +/* $NetBSD: term.h,v 1.4 1997/01/11 06:48:14 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/termcap.h b/lib/libedit/termcap.h index 4fd2cab0ec02..6b6faacfa32c 100644 --- a/lib/libedit/termcap.h +++ b/lib/libedit/termcap.h @@ -1,3 +1,5 @@ +/* $NetBSD: termcap.h,v 1.2 1997/01/11 06:48:14 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/tokenizer.c b/lib/libedit/tokenizer.c index 41095fa980f6..49ebf08e6173 100644 --- a/lib/libedit/tokenizer.c +++ b/lib/libedit/tokenizer.c @@ -1,3 +1,5 @@ +/* $NetBSD: tokenizer.c,v 1.2 1997/01/11 06:48:15 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)tokenizer.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: tokenizer.c,v 1.2 1997/01/11 06:48:15 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/tokenizer.h b/lib/libedit/tokenizer.h index d495dc69ab02..11b49ac4b708 100644 --- a/lib/libedit/tokenizer.h +++ b/lib/libedit/tokenizer.h @@ -1,3 +1,5 @@ +/* $NetBSD: tokenizer.h,v 1.2 1997/01/11 06:48:16 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/tty.c b/lib/libedit/tty.c index ac99843b7746..b7684f55db52 100644 --- a/lib/libedit/tty.c +++ b/lib/libedit/tty.c @@ -1,3 +1,5 @@ +/* $NetBSD: tty.c,v 1.2 1997/01/11 06:48:17 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)tty.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: tty.c,v 1.2 1997/01/11 06:48:17 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libedit/tty.h b/lib/libedit/tty.h index 12da50dcb5bd..b404d98e9272 100644 --- a/lib/libedit/tty.h +++ b/lib/libedit/tty.h @@ -1,3 +1,5 @@ +/* $NetBSD: tty.h,v 1.2 1997/01/11 06:48:18 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. diff --git a/lib/libedit/vi.c b/lib/libedit/vi.c index 030ee2286b0d..5b5a2f63c438 100644 --- a/lib/libedit/vi.c +++ b/lib/libedit/vi.c @@ -1,3 +1,5 @@ +/* $NetBSD: vi.c,v 1.2 1997/01/11 06:48:19 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -35,7 +37,11 @@ */ #if !defined(lint) && !defined(SCCSID) +#if 0 static char sccsid[] = "@(#)vi.c 8.1 (Berkeley) 6/4/93"; +#else +static char rcsid[] = "$NetBSD: vi.c,v 1.2 1997/01/11 06:48:19 lukem Exp $"; +#endif #endif /* not lint && not SCCSID */ /* diff --git a/lib/libterm/termcap.h b/lib/libterm/termcap.h index 4fd2cab0ec02..6b6faacfa32c 100644 --- a/lib/libterm/termcap.h +++ b/lib/libterm/termcap.h @@ -1,3 +1,5 @@ +/* $NetBSD: termcap.h,v 1.2 1997/01/11 06:48:14 lukem Exp $ */ + /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved.