diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1997-10-21 01:56:05 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1997-10-21 01:56:05 +0000 |
commit | 14d01796b1ab61a57dbd60da66d8dac699a0a2e7 (patch) | |
tree | 9444b2a63ad5396b894abd07c85ff08c9c031d26 /gnu/usr.bin | |
parent | 58fda9eaaeb697cef01d825dfe2b6f045659c15c (diff) |
Diffstat (limited to 'gnu/usr.bin')
418 files changed, 655 insertions, 421 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index f5eb3a79a0baf..0dab4ae18c601 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.32 1996/09/10 14:04:37 peter Exp $ +# $Id: Makefile,v 1.33 1996/10/04 08:45:34 peter Exp $ SUBDIR= as awk bc bison cc cpio cvs dc dialog diff diff3 gdb genclass gperf \ grep groff gzip ld man patch perl ptx rcs sdiff send-pr \ diff --git a/gnu/usr.bin/Makefile.inc b/gnu/usr.bin/Makefile.inc index 5371a22cca25b..07604ed971c24 100644 --- a/gnu/usr.bin/Makefile.inc +++ b/gnu/usr.bin/Makefile.inc @@ -1,3 +1,3 @@ -# $Id$ +# $Id: Makefile.inc,v 1.1 1994/01/30 00:31:51 rgrimes Exp $ BINDIR?= /usr/bin diff --git a/gnu/usr.bin/as/Makefile b/gnu/usr.bin/as/Makefile index 908501d5edbaf..c50a7dc393f26 100644 --- a/gnu/usr.bin/as/Makefile +++ b/gnu/usr.bin/as/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 6.1 (Berkeley) 3/3/91 -# $Id: Makefile,v 1.9 1995/09/22 14:14:12 phk Exp $ +# $Id: Makefile,v 1.10 1996/06/24 04:22:43 jkh Exp $ .include "config/Makefile.$(MACHINE)" diff --git a/gnu/usr.bin/as/Makefile.in b/gnu/usr.bin/as/Makefile.in index ba1696b1466f7..d9c8468646bac 100644 --- a/gnu/usr.bin/as/Makefile.in +++ b/gnu/usr.bin/as/Makefile.in @@ -1,4 +1,4 @@ -# $Id: $ +# $Id: Makefile.in,v 1.3 1996/05/07 23:14:59 wosch Exp $ # Makefile for GNU Assembler # Copyright (C) 1987-1992 Free Software Foundation, Inc. diff --git a/gnu/usr.bin/as/app.c b/gnu/usr.bin/as/app.c index 15e88e9140501..08c07d0543724 100644 --- a/gnu/usr.bin/as/app.c +++ b/gnu/usr.bin/as/app.c @@ -24,7 +24,7 @@ pair. This needs better error-handling. */ #ifndef lint -static char rcsid[] = "$Id: app.c,v 1.3 1994/12/23 22:35:59 nate Exp $"; +static char rcsid[] = "$Id: app.c,v 1.4 1995/05/30 04:45:59 rgrimes Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/as.1 b/gnu/usr.bin/as/as.1 index 093aae6fc27f2..5d264759cc0f2 100644 --- a/gnu/usr.bin/as/as.1 +++ b/gnu/usr.bin/as/as.1 @@ -1,6 +1,6 @@ .\" Copyright (c) 1991, 1992 Free Software Foundation .\" See section COPYING for conditions for redistribution -.\" $Id: as.1,v 1.5 1996/08/29 18:05:40 wosch Exp $ +.\" $Id: as.1,v 1.6 1996/10/01 00:11:12 peter Exp $ .TH as 1 "21 January 1992" "cygnus support" "GNU Development Tools" .SH NAME diff --git a/gnu/usr.bin/as/as.c b/gnu/usr.bin/as/as.c index 309ba38310e09..acb5d7ee7fe58 100644 --- a/gnu/usr.bin/as/as.c +++ b/gnu/usr.bin/as/as.c @@ -32,7 +32,7 @@ * */ #ifndef lint -static char rcsid[] = "$Id: as.c,v 1.3 1995/05/30 04:46:01 rgrimes Exp $"; +static char rcsid[] = "$Id: as.c,v 1.4 1996/10/01 00:11:19 peter Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/as.h b/gnu/usr.bin/as/as.h index 0e9d017528e48..32825adb64f0e 100644 --- a/gnu/usr.bin/as/as.h +++ b/gnu/usr.bin/as/as.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: as.h,v 1.4 1995/05/30 04:46:02 rgrimes Exp $ + * $Id: as.h,v 1.5 1996/10/01 00:11:25 peter Exp $ */ #define GAS 1 diff --git a/gnu/usr.bin/as/atof-generic.c b/gnu/usr.bin/as/atof-generic.c index 47a58b1409a47..55bdbc72d0a58 100644 --- a/gnu/usr.bin/as/atof-generic.c +++ b/gnu/usr.bin/as/atof-generic.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: atof-generic.c,v 1.2 1993/11/03 00:51:14 paul Exp $"; +static char rcsid[] = "$Id: atof-generic.c,v 1.3 1995/05/30 04:46:04 rgrimes Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/bignum-copy.c b/gnu/usr.bin/as/bignum-copy.c index ec90e39975ca0..f1fe529c38e17 100644 --- a/gnu/usr.bin/as/bignum-copy.c +++ b/gnu/usr.bin/as/bignum-copy.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: bignum-copy.c,v 1.2 1993/11/03 00:51:16 paul Exp $"; +static char rcsid[] = "$Id: bignum-copy.c,v 1.3 1995/05/30 04:46:05 rgrimes Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/bignum.h b/gnu/usr.bin/as/bignum.h index 64efadc1f27c2..f5e3a1dcacc9c 100644 --- a/gnu/usr.bin/as/bignum.h +++ b/gnu/usr.bin/as/bignum.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: bignum.h,v 1.2 1993/11/03 00:51:18 paul Exp $ + * $Id: bignum.h,v 1.3 1995/05/30 04:46:06 rgrimes Exp $ */ /***********************************************************************\ diff --git a/gnu/usr.bin/as/bit_fix.h b/gnu/usr.bin/as/bit_fix.h index 14988ff2000e3..91d526b515ff7 100644 --- a/gnu/usr.bin/as/bit_fix.h +++ b/gnu/usr.bin/as/bit_fix.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: bit_fix.h,v 1.1 1993/11/03 00:51:19 paul Exp $ + * $Id: bit_fix.h,v 1.2 1995/05/30 04:46:07 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/cond.c b/gnu/usr.bin/as/cond.c index 3eb8db7f41142..74488f4dc9570 100644 --- a/gnu/usr.bin/as/cond.c +++ b/gnu/usr.bin/as/cond.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: cond.c,v 1.2 1994/12/23 22:36:03 nate Exp $"; +static char rcsid[] = "$Id: cond.c,v 1.3 1995/05/30 04:46:08 rgrimes Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/Makefile.hp300 b/gnu/usr.bin/as/config/Makefile.hp300 index 4261d35b39bc3..388501cf8dc82 100644 --- a/gnu/usr.bin/as/config/Makefile.hp300 +++ b/gnu/usr.bin/as/config/Makefile.hp300 @@ -1,5 +1,5 @@ # from: @(#)Makefile.hp300 6.1 (Berkeley) 3/3/91 -# $Id: Makefile.hp300,v 1.4 1993/10/16 03:23:04 cgd Exp $ +# $Id: Makefile.hp300,v 1.1 1993/11/03 00:52:56 paul Exp $ CFLAGS+= -Dm68851 SRCS+= tc-m68k.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.i386 b/gnu/usr.bin/as/config/Makefile.i386 index 4cee91937bf9c..06c3d737cfcae 100644 --- a/gnu/usr.bin/as/config/Makefile.i386 +++ b/gnu/usr.bin/as/config/Makefile.i386 @@ -1,5 +1,5 @@ # from: @(#)Makefile.i386 6.1 (Berkeley) 3/3/91 -# $Id: Makefile.i386,v 1.2 1993/11/03 00:52:58 paul Exp $ +# $Id: Makefile.i386,v 1.3 1994/12/23 22:37:31 nate Exp $ CFLAGS+= -DNON_BROKEN_WORDS -DPIC SRCS+= tc-i386.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.pc532 b/gnu/usr.bin/as/config/Makefile.pc532 index d4b22aba6c807..5336a25a5eee6 100644 --- a/gnu/usr.bin/as/config/Makefile.pc532 +++ b/gnu/usr.bin/as/config/Makefile.pc532 @@ -1,4 +1,4 @@ -# $Id: Makefile.pc532,v 1.1 1993/10/16 03:23:37 cgd Exp $ +# $Id: Makefile.pc532,v 1.1 1993/11/03 00:52:59 paul Exp $ SRCS+= tc-ns32k.c atof-ns32k.c diff --git a/gnu/usr.bin/as/config/Makefile.sparc b/gnu/usr.bin/as/config/Makefile.sparc index 6dc9658536f7b..2e9c8f197219c 100644 --- a/gnu/usr.bin/as/config/Makefile.sparc +++ b/gnu/usr.bin/as/config/Makefile.sparc @@ -1,5 +1,5 @@ # from: @(#)Makefile.i386 6.1 (Berkeley) 3/3/91 -# $Id: Makefile.sparc,v 1.1 1993/11/03 00:53:00 paul Exp $ +# $Id: Makefile.sparc,v 1.2 1994/12/23 22:37:31 nate Exp $ CFLAGS+= -DNON_BROKEN_WORDS -DPIC SRCS+= tc-sparc.c atof-ieee.c diff --git a/gnu/usr.bin/as/config/Makefile.vax b/gnu/usr.bin/as/config/Makefile.vax index f62b087d3df33..060f15d9ddaee 100644 --- a/gnu/usr.bin/as/config/Makefile.vax +++ b/gnu/usr.bin/as/config/Makefile.vax @@ -1,4 +1,4 @@ # from: @(#)Makefile.vax 6.1 (Berkeley) 3/3/91 -# $Id: Makefile.vax,v 1.3 1993/10/02 20:58:23 pk Exp $ +# $Id: Makefile.vax,v 1.1 1993/11/03 00:53:01 paul Exp $ SRCS+= tc-vax.c atof-vax.c diff --git a/gnu/usr.bin/as/config/atof-ieee.c b/gnu/usr.bin/as/config/atof-ieee.c index 2c51e6b7da121..752ca60a21aef 100644 --- a/gnu/usr.bin/as/config/atof-ieee.c +++ b/gnu/usr.bin/as/config/atof-ieee.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: atof-ieee.c,v 1.4 1996/09/22 00:55:46 pst Exp $"; +static char rcsid[] = "$Id: atof-ieee.c,v 1.5 1996/10/01 00:12:30 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/ho-i386.h b/gnu/usr.bin/as/config/ho-i386.h index 04de36681d1c0..7e7dbc330fce7 100644 --- a/gnu/usr.bin/as/config/ho-i386.h +++ b/gnu/usr.bin/as/config/ho-i386.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: ho-i386.h,v 1.1 1993/11/03 00:53:21 paul Exp $ + * $Id: ho-i386.h,v 1.2 1995/05/30 04:46:55 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/config/obj-aout.h b/gnu/usr.bin/as/config/obj-aout.h index ff99f41015e81..ef754b2634c52 100644 --- a/gnu/usr.bin/as/config/obj-aout.h +++ b/gnu/usr.bin/as/config/obj-aout.h @@ -17,7 +17,7 @@ License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: obj-aout.h,v 1.4 1995/05/30 04:47:04 rgrimes Exp $ + $Id: obj-aout.h,v 1.5 1996/10/01 00:12:37 peter Exp $ */ diff --git a/gnu/usr.bin/as/config/tc-i386.c b/gnu/usr.bin/as/config/tc-i386.c index 8d3982e1ea1e6..1b1f9db23f1af 100644 --- a/gnu/usr.bin/as/config/tc-i386.c +++ b/gnu/usr.bin/as/config/tc-i386.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: tc-i386.c,v 1.5 1996/10/01 00:12:43 peter Exp $"; +static char rcsid[] = "$Id: tc-i386.c,v 1.6 1996/10/03 08:07:38 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/config/tc-i386.h b/gnu/usr.bin/as/config/tc-i386.h index fd4d335ab2d94..5dc82e144768c 100644 --- a/gnu/usr.bin/as/config/tc-i386.h +++ b/gnu/usr.bin/as/config/tc-i386.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: tc-i386.h,v 1.2 1994/12/23 22:37:36 nate Exp $ + * $Id: tc-i386.h,v 1.3 1995/05/30 04:47:31 rgrimes Exp $ */ #ifndef TC_I386 diff --git a/gnu/usr.bin/as/config/tc-sparc.c b/gnu/usr.bin/as/config/tc-sparc.c index b82a52c0cb104..7dcbafc53cca8 100644 --- a/gnu/usr.bin/as/config/tc-sparc.c +++ b/gnu/usr.bin/as/config/tc-sparc.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: tc-sparc.c,v 1.4 1995/05/30 04:47:49 rgrimes Exp $"; +static char rcsid[] = "$Id: tc-sparc.c,v 1.5 1996/10/01 00:13:16 peter Exp $"; #endif #define cypress 1234 diff --git a/gnu/usr.bin/as/config/tc-sparc.h b/gnu/usr.bin/as/config/tc-sparc.h index c6dfa317da6c9..0463ebef45fe0 100644 --- a/gnu/usr.bin/as/config/tc-sparc.h +++ b/gnu/usr.bin/as/config/tc-sparc.h @@ -18,7 +18,7 @@ to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: tc-sparc.h,v 1.2 1994/12/23 22:37:41 nate Exp $ + * $Id: tc-sparc.h,v 1.3 1995/05/30 04:47:50 rgrimes Exp $ */ #define TC_SPARC 1 diff --git a/gnu/usr.bin/as/config/te-generic.h b/gnu/usr.bin/as/config/te-generic.h index f72d5ee95fea3..8bf93bf4ad39c 100644 --- a/gnu/usr.bin/as/config/te-generic.h +++ b/gnu/usr.bin/as/config/te-generic.h @@ -6,7 +6,7 @@ * compile, and copying as an aid for testing and porting. xoxorich. */ /* - * $Id: te-generic.h,v 1.1 1993/10/02 20:59:49 pk Exp $ + * $Id: te-generic.h,v 1.1 1993/11/03 00:55:03 paul Exp $ */ diff --git a/gnu/usr.bin/as/debug.c b/gnu/usr.bin/as/debug.c index d0a0c2d052cae..63e64dfdbfad5 100644 --- a/gnu/usr.bin/as/debug.c +++ b/gnu/usr.bin/as/debug.c @@ -21,7 +21,7 @@ /* Routines for debug use only. */ #ifndef lint -static char rcsid[] = "$Id: debug.c,v 1.1 1993/11/03 00:51:26 paul Exp $"; +static char rcsid[] = "$Id: debug.c,v 1.2 1995/05/30 04:46:09 rgrimes Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/doc/as-all.texinfo b/gnu/usr.bin/as/doc/as-all.texinfo index bc4779bc79e1f..c9d749136a1fd 100644 --- a/gnu/usr.bin/as/doc/as-all.texinfo +++ b/gnu/usr.bin/as/doc/as-all.texinfo @@ -63,7 +63,7 @@ done. @page @tex \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$ -\xdef\manvers{\$Revision: 1.1 $} % For use in headers, footers too +\xdef\manvers{\$Revision: 1.1.6.1 $} % For use in headers, footers too {\parskip=0pt \hfill \manvers\par \hfill \TeX{}info \texinfoversion\par diff --git a/gnu/usr.bin/as/expr.c b/gnu/usr.bin/as/expr.c index e846d5656189b..3d7caa6ac36c4 100644 --- a/gnu/usr.bin/as/expr.c +++ b/gnu/usr.bin/as/expr.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: expr.c,v 1.3 1995/05/30 04:46:10 rgrimes Exp $"; +static char rcsid[] = "$Id: expr.c,v 1.4 1996/10/01 00:11:30 peter Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/expr.h b/gnu/usr.bin/as/expr.h index d0b68a53b013c..52b591326c074 100644 --- a/gnu/usr.bin/as/expr.h +++ b/gnu/usr.bin/as/expr.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: expr.h,v 1.2 1993/11/03 00:51:31 paul Exp $ + * $Id: expr.h,v 1.3 1995/05/30 04:46:11 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/flo-const.c b/gnu/usr.bin/as/flo-const.c index 90f0af108bea0..4df2e46309a6b 100644 --- a/gnu/usr.bin/as/flo-const.c +++ b/gnu/usr.bin/as/flo-const.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: flo-const.c,v 1.1 1993/11/03 00:51:32 paul Exp $"; +static char rcsid[] = "$Id: flo-const.c,v 1.2 1995/05/30 04:46:12 rgrimes Exp $"; #endif #include "flonum.h" diff --git a/gnu/usr.bin/as/flo-copy.c b/gnu/usr.bin/as/flo-copy.c index 6e1b30685d1c0..8eb41627cf720 100644 --- a/gnu/usr.bin/as/flo-copy.c +++ b/gnu/usr.bin/as/flo-copy.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: flo-copy.c,v 1.1 1993/11/03 00:51:34 paul Exp $"; +static char rcsid[] = "$Id: flo-copy.c,v 1.2 1995/05/30 04:46:13 rgrimes Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/flonum-mult.c b/gnu/usr.bin/as/flonum-mult.c index 4fe8f38dbc0be..6b718758388b3 100644 --- a/gnu/usr.bin/as/flonum-mult.c +++ b/gnu/usr.bin/as/flonum-mult.c @@ -19,7 +19,7 @@ notice and this notice must be preserved on all copies. */ #ifndef lint -static char rcsid[] = "$Id: flonum-mult.c,v 1.2 1993/11/03 00:51:36 paul Exp $"; +static char rcsid[] = "$Id: flonum-mult.c,v 1.3 1995/05/30 04:46:14 rgrimes Exp $"; #endif #include "flonum.h" diff --git a/gnu/usr.bin/as/flonum.h b/gnu/usr.bin/as/flonum.h index cc05dbf0267df..7bb3c0dec3ba8 100644 --- a/gnu/usr.bin/as/flonum.h +++ b/gnu/usr.bin/as/flonum.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: flonum.h,v 1.2 1993/11/03 00:51:37 paul Exp $ + * $Id: flonum.h,v 1.3 1995/05/30 04:46:15 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/frags.c b/gnu/usr.bin/as/frags.c index 71f4669b3f5e3..262e058a25b9e 100644 --- a/gnu/usr.bin/as/frags.c +++ b/gnu/usr.bin/as/frags.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: frags.c,v 1.2 1993/11/03 00:51:39 paul Exp $"; +static char rcsid[] = "$Id: frags.c,v 1.3 1995/05/30 04:46:16 rgrimes Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/frags.h b/gnu/usr.bin/as/frags.h index 0e82c65f362ae..23753a7a44e7a 100644 --- a/gnu/usr.bin/as/frags.h +++ b/gnu/usr.bin/as/frags.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: frags.h,v 1.2 1993/11/03 00:51:40 paul Exp $ + * $Id: frags.h,v 1.3 1995/05/30 04:46:17 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/hash.c b/gnu/usr.bin/as/hash.c index 70068ea81ab90..8fccf2787e160 100644 --- a/gnu/usr.bin/as/hash.c +++ b/gnu/usr.bin/as/hash.c @@ -123,7 +123,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: hash.c,v 1.3 1995/05/30 04:46:18 rgrimes Exp $"; +static char rcsid[] = "$Id: hash.c,v 1.4 1995/12/01 08:19:12 jkh Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/hash.h b/gnu/usr.bin/as/hash.h index 034c2aa62c311..c9a2ab2db95d4 100644 --- a/gnu/usr.bin/as/hash.h +++ b/gnu/usr.bin/as/hash.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: hash.h,v 1.2 1993/11/03 00:51:46 paul Exp $ + * $Id: hash.h,v 1.3 1995/05/30 04:46:19 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/hex-value.c b/gnu/usr.bin/as/hex-value.c index 432aa02422109..f55a64bc947ef 100644 --- a/gnu/usr.bin/as/hex-value.c +++ b/gnu/usr.bin/as/hex-value.c @@ -23,7 +23,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: hex-value.c,v 1.2 1993/11/03 00:51:47 paul Exp $"; +static char rcsid[] = "$Id: hex-value.c,v 1.3 1995/05/30 04:46:20 rgrimes Exp $"; #endif #define __ (42) /* blatently illegal digit value */ diff --git a/gnu/usr.bin/as/input-file.c b/gnu/usr.bin/as/input-file.c index 39e19ac0c52a5..86c6a7734c84b 100644 --- a/gnu/usr.bin/as/input-file.c +++ b/gnu/usr.bin/as/input-file.c @@ -25,7 +25,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: input-file.c,v 1.2 1993/11/03 00:51:48 paul Exp $"; +static char rcsid[] = "$Id: input-file.c,v 1.3 1995/05/30 04:46:21 rgrimes Exp $"; #endif #ifdef USG diff --git a/gnu/usr.bin/as/input-file.h b/gnu/usr.bin/as/input-file.h index 0c6da7d004e51..b9fb65fd04a9d 100644 --- a/gnu/usr.bin/as/input-file.h +++ b/gnu/usr.bin/as/input-file.h @@ -20,7 +20,7 @@ /*"input_file.c":Operating-system dependant functions to read source files.*/ /* - * $Id: input-file.h,v 1.2 1993/11/03 00:51:50 paul Exp $ + * $Id: input-file.h,v 1.3 1995/05/30 04:46:22 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/input-scrub.c b/gnu/usr.bin/as/input-scrub.c index 0e0a1790f3bd4..47ba0d29f7346 100644 --- a/gnu/usr.bin/as/input-scrub.c +++ b/gnu/usr.bin/as/input-scrub.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: input-scrub.c,v 1.3 1994/12/23 22:36:05 nate Exp $"; +static char rcsid[] = "$Id: input-scrub.c,v 1.4 1995/05/30 04:46:23 rgrimes Exp $"; #endif #include <errno.h> /* Need this to make errno declaration right */ diff --git a/gnu/usr.bin/as/listing.c b/gnu/usr.bin/as/listing.c index f79a8b451041e..332d4df9e6bfa 100644 --- a/gnu/usr.bin/as/listing.c +++ b/gnu/usr.bin/as/listing.c @@ -92,7 +92,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ */ #ifndef lint -static char rcsid[] = "$Id: listing.c,v 1.2 1994/12/23 22:36:08 nate Exp $"; +static char rcsid[] = "$Id: listing.c,v 1.3 1995/05/30 04:46:24 rgrimes Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/as/listing.h b/gnu/usr.bin/as/listing.h index 2220c35eb4c26..fde349b11e4a0 100644 --- a/gnu/usr.bin/as/listing.h +++ b/gnu/usr.bin/as/listing.h @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: listing.h,v 1.1 1993/11/03 00:51:56 paul Exp $ + * $Id: listing.h,v 1.2 1994/12/23 22:36:10 nate Exp $ */ #ifndef __listing_h__ diff --git a/gnu/usr.bin/as/makefile.dos b/gnu/usr.bin/as/makefile.dos index 89c74c7873619..b9f7197c5fd6c 100644 --- a/gnu/usr.bin/as/makefile.dos +++ b/gnu/usr.bin/as/makefile.dos @@ -17,7 +17,7 @@ #along with GNU GAS; see the file COPYING. If not, write to #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# $Id: makefile.dos,v 1.1 1993/10/02 20:57:43 pk Exp $ +# $Id: makefile.dos,v 1.1 1993/11/03 00:51:59 paul Exp $ # The targets for external use include: # all, doc, proto, install, uninstall, includes, TAGS, diff --git a/gnu/usr.bin/as/messages.c b/gnu/usr.bin/as/messages.c index 55e97d943ef8c..e46d371d8d866 100644 --- a/gnu/usr.bin/as/messages.c +++ b/gnu/usr.bin/as/messages.c @@ -18,7 +18,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: messages.c,v 1.3 1994/12/23 22:36:12 nate Exp $"; +static char rcsid[] = "$Id: messages.c,v 1.4 1995/05/30 04:46:25 rgrimes Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/obj.h b/gnu/usr.bin/as/obj.h index a621941004aec..000641a3c6130 100644 --- a/gnu/usr.bin/as/obj.h +++ b/gnu/usr.bin/as/obj.h @@ -19,7 +19,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: obj.h,v 1.1 1993/11/03 00:52:03 paul Exp $ + * $Id: obj.h,v 1.2 1995/05/30 04:46:26 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/obstack.c b/gnu/usr.bin/as/obstack.c index d7302ea1f5d47..b36bdada55eab 100644 --- a/gnu/usr.bin/as/obstack.c +++ b/gnu/usr.bin/as/obstack.c @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: obstack.c,v 1.3 1993/10/02 20:57:47 pk Exp $"; +static char rcsid[] = "$Id: obstack.c,v 1.2 1993/11/03 00:52:04 paul Exp $"; #endif #include "obstack.h" diff --git a/gnu/usr.bin/as/obstack.h b/gnu/usr.bin/as/obstack.h index c29bb1f47921c..cd847ed7ec82c 100644 --- a/gnu/usr.bin/as/obstack.h +++ b/gnu/usr.bin/as/obstack.h @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: obstack.h,v 1.2 1993/11/03 00:52:06 paul Exp $ + * $Id: obstack.h,v 1.3 1995/05/30 04:46:27 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/opcode/a29k.h b/gnu/usr.bin/as/opcode/a29k.h index 8c3616747f090..1d34ff8f5ec9a 100644 --- a/gnu/usr.bin/as/opcode/a29k.h +++ b/gnu/usr.bin/as/opcode/a29k.h @@ -285,6 +285,9 @@ CONST unsigned int num_opcodes = (((sizeof a29k_opcodes) / (sizeof a29k_opcodes[ /* * $Log: a29k.h,v $ + * Revision 1.1 1993/11/03 00:55:48 paul + * Brought over NetBSD's gas ready for pk's shared libs. + * * Revision 1.1 1993/10/02 21:00:40 pk * GNU gas 1.92.3 based assembler supporting PIC code (for i386 and sparc). * diff --git a/gnu/usr.bin/as/opcode/i386.h b/gnu/usr.bin/as/opcode/i386.h index c6197c00e65ea..43b4ca85ae0e9 100644 --- a/gnu/usr.bin/as/opcode/i386.h +++ b/gnu/usr.bin/as/opcode/i386.h @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: i386.h,v 1.4 1996/10/01 00:13:48 peter Exp $ */ +/* $Id: i386.h,v 1.4.2.1 1996/11/11 21:24:26 phk Exp $ */ static const template i386_optab[] = { diff --git a/gnu/usr.bin/as/opcode/i960.h b/gnu/usr.bin/as/opcode/i960.h index 6a6ad42536bde..c32f7ae5ea523 100644 --- a/gnu/usr.bin/as/opcode/i960.h +++ b/gnu/usr.bin/as/opcode/i960.h @@ -18,7 +18,7 @@ * appropriate. */ -/* $Id: i960.h,v 1.1 1993/11/03 00:55:56 paul Exp $ */ +/* $Id: i960.h,v 1.2 1995/05/30 04:48:03 rgrimes Exp $ */ #define CTRL 0 #define COBR 1 diff --git a/gnu/usr.bin/as/opcode/sparc.h b/gnu/usr.bin/as/opcode/sparc.h index 7921cf597f432..b5e8d5e331147 100644 --- a/gnu/usr.bin/as/opcode/sparc.h +++ b/gnu/usr.bin/as/opcode/sparc.h @@ -20,7 +20,7 @@ along with GAS or GDB; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: sparc.h,v 1.2 1994/12/23 22:37:45 nate Exp $ + * $Id: sparc.h,v 1.3 1995/05/30 04:48:14 rgrimes Exp $ */ /* FIXME-someday: perhaps the ,a's and such should be embedded in the diff --git a/gnu/usr.bin/as/output-file.c b/gnu/usr.bin/as/output-file.c index 1a8683be431f5..27bcd8e615f05 100644 --- a/gnu/usr.bin/as/output-file.c +++ b/gnu/usr.bin/as/output-file.c @@ -27,7 +27,7 @@ /* note that we do need config info. xoxorich. */ #ifndef lint -static char rcsid[] = "$Id: output-file.c,v 1.2 1993/11/03 00:52:08 paul Exp $"; +static char rcsid[] = "$Id: output-file.c,v 1.3 1995/05/30 04:46:29 rgrimes Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/output-file.h b/gnu/usr.bin/as/output-file.h index 37878ab6d1438..26e8e45073b3f 100644 --- a/gnu/usr.bin/as/output-file.h +++ b/gnu/usr.bin/as/output-file.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: output-file.h,v 1.1 1993/11/03 00:52:10 paul Exp $ + * $Id: output-file.h,v 1.2 1995/05/30 04:46:30 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/read.c b/gnu/usr.bin/as/read.c index ea51f681d003b..769128e484e30 100644 --- a/gnu/usr.bin/as/read.c +++ b/gnu/usr.bin/as/read.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: read.c,v 1.7.2.1 1997/04/18 17:10:45 jdp Exp $"; +static char rcsid[] = "$Id: read.c,v 1.7.2.2 1997/04/29 02:16:51 jdp Exp $"; #endif #define MASK_CHAR (0xFF) /* If your chars aren't 8 bits, you will diff --git a/gnu/usr.bin/as/read.h b/gnu/usr.bin/as/read.h index be5767d82d81a..7c9a2a3060215 100644 --- a/gnu/usr.bin/as/read.h +++ b/gnu/usr.bin/as/read.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: read.h,v 1.5 1995/05/30 04:46:32 rgrimes Exp $ + * $Id: read.h,v 1.6 1996/10/01 00:11:45 peter Exp $ */ diff --git a/gnu/usr.bin/as/struc-symbol.h b/gnu/usr.bin/as/struc-symbol.h index fd7fd816df70a..9b74064194c81 100644 --- a/gnu/usr.bin/as/struc-symbol.h +++ b/gnu/usr.bin/as/struc-symbol.h @@ -17,7 +17,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: struc-symbol.h,v 1.5 1995/05/30 04:46:33 rgrimes Exp $ + * $Id: struc-symbol.h,v 1.6 1996/10/01 00:11:48 peter Exp $ */ diff --git a/gnu/usr.bin/as/subsegs.c b/gnu/usr.bin/as/subsegs.c index 4bca715b0349f..dda307cc1c23b 100644 --- a/gnu/usr.bin/as/subsegs.c +++ b/gnu/usr.bin/as/subsegs.c @@ -22,7 +22,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: subsegs.c,v 1.4 1995/05/30 04:46:34 rgrimes Exp $"; +static char rcsid[] = "$Id: subsegs.c,v 1.5 1996/10/01 00:11:54 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/subsegs.h b/gnu/usr.bin/as/subsegs.h index 9d1482a94588d..7c10a8f55f512 100644 --- a/gnu/usr.bin/as/subsegs.h +++ b/gnu/usr.bin/as/subsegs.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: subsegs.h,v 1.2 1993/11/03 00:52:20 paul Exp $ + * $Id: subsegs.h,v 1.3 1995/05/30 04:46:35 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/symbols.c b/gnu/usr.bin/as/symbols.c index 441f528be6ccc..a2adf0ae6f2f1 100644 --- a/gnu/usr.bin/as/symbols.c +++ b/gnu/usr.bin/as/symbols.c @@ -19,7 +19,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef lint -static char rcsid[] = "$Id: symbols.c,v 1.3 1995/05/30 04:46:36 rgrimes Exp $"; +static char rcsid[] = "$Id: symbols.c,v 1.4 1996/10/01 00:11:57 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/symbols.h b/gnu/usr.bin/as/symbols.h index 0906e9d38093c..11ad6375dc72d 100644 --- a/gnu/usr.bin/as/symbols.h +++ b/gnu/usr.bin/as/symbols.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: symbols.h,v 1.2 1993/11/03 00:52:23 paul Exp $ + * $Id: symbols.h,v 1.3 1995/05/30 04:46:37 rgrimes Exp $ */ diff --git a/gnu/usr.bin/as/tc.h b/gnu/usr.bin/as/tc.h index fa71bd528115e..39133216a91f9 100644 --- a/gnu/usr.bin/as/tc.h +++ b/gnu/usr.bin/as/tc.h @@ -18,7 +18,7 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - * $Id: tc.h,v 1.2 1995/05/30 04:46:38 rgrimes Exp $ + * $Id: tc.h,v 1.3 1996/10/01 00:12:02 peter Exp $ */ diff --git a/gnu/usr.bin/as/testscripts/doboth b/gnu/usr.bin/as/testscripts/doboth index 6b46a03eb1257..dc379e93d3fbb 100755 --- a/gnu/usr.bin/as/testscripts/doboth +++ b/gnu/usr.bin/as/testscripts/doboth @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: doboth,v 1.1 1993/10/02 21:01:07 pk Exp $ +# $Id: doboth,v 1.1 1993/11/03 00:56:17 paul Exp $ x=$1 ; shift y=$1 ; shift diff --git a/gnu/usr.bin/as/testscripts/doobjcmp b/gnu/usr.bin/as/testscripts/doobjcmp index 6c90cf9a05ffc..9fe6d907558e9 100755 --- a/gnu/usr.bin/as/testscripts/doobjcmp +++ b/gnu/usr.bin/as/testscripts/doobjcmp @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: doobjcmp,v 1.1 1993/10/02 21:01:08 pk Exp $ +# $Id: doobjcmp,v 1.1 1993/11/03 00:56:18 paul Exp $ # compare two object files, in depth. x=$1 diff --git a/gnu/usr.bin/as/testscripts/dostriptest b/gnu/usr.bin/as/testscripts/dostriptest index aa734c0c2b9fc..6f0c2918aeedf 100755 --- a/gnu/usr.bin/as/testscripts/dostriptest +++ b/gnu/usr.bin/as/testscripts/dostriptest @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: dostriptest,v 1.1 1993/10/02 21:01:09 pk Exp $ +# $Id: dostriptest,v 1.1 1993/11/03 00:56:19 paul Exp $ x=striptest.xx.$$ y=striptest.yy.$$ diff --git a/gnu/usr.bin/as/testscripts/dotest b/gnu/usr.bin/as/testscripts/dotest index 051ee11ef7908..ff39433d32b9d 100755 --- a/gnu/usr.bin/as/testscripts/dotest +++ b/gnu/usr.bin/as/testscripts/dotest @@ -1,6 +1,6 @@ #!/bin/sh # ad hoc debug tool -# $Id: dotest,v 1.1 1993/10/02 21:01:10 pk Exp $ +# $Id: dotest,v 1.1 1993/11/03 00:56:21 paul Exp $ x=$1 y=$2 diff --git a/gnu/usr.bin/as/testscripts/dounsortreloc b/gnu/usr.bin/as/testscripts/dounsortreloc index 0a4771c6425ea..b990553fa6e7c 100755 --- a/gnu/usr.bin/as/testscripts/dounsortreloc +++ b/gnu/usr.bin/as/testscripts/dounsortreloc @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: dounsortreloc,v 1.1 1993/10/02 21:01:11 pk Exp $ +# $Id: dounsortreloc,v 1.1 1993/11/03 00:56:22 paul Exp $ # objdump the reloc table, but strip off the headings and reloc # numbers and sort the result. Intended for use in comparing reloc # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/testscripts/dounsortsymbols b/gnu/usr.bin/as/testscripts/dounsortsymbols index 2dc5acd65e003..480fe555317ef 100755 --- a/gnu/usr.bin/as/testscripts/dounsortsymbols +++ b/gnu/usr.bin/as/testscripts/dounsortsymbols @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: dounsortsymbols,v 1.1 1993/10/02 21:01:12 pk Exp $ +# $Id: dounsortsymbols,v 1.1 1993/11/03 00:56:24 paul Exp $ # objdump the symbol table, but strip off the headings and symbol # numbers and sort the result. Intended for use in comparing symbol # tables that may not be in the same order. diff --git a/gnu/usr.bin/as/version.c b/gnu/usr.bin/as/version.c index c18109a7a414d..64c4caa4b6e19 100644 --- a/gnu/usr.bin/as/version.c +++ b/gnu/usr.bin/as/version.c @@ -16,10 +16,10 @@ const */ #ifndef lint -static char rcsid[] = "$Id: version.c,v 1.3 1994/02/14 21:18:05 nate Exp $"; +static char rcsid[] = "$Id: version.c,v 1.4 1995/05/30 04:46:39 rgrimes Exp $"; #endif -char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.3 $\n"; +char version_string[] = "GNU assembler version 1.92.3, FreeBSD $Revision: 1.4 $\n"; #ifdef HO_VMS dummy3() diff --git a/gnu/usr.bin/as/write.c b/gnu/usr.bin/as/write.c index 7510d2d5db6d0..cf794999f1fd2 100644 --- a/gnu/usr.bin/as/write.c +++ b/gnu/usr.bin/as/write.c @@ -21,7 +21,7 @@ /* This thing should be set up to do byteordering correctly. But... */ #ifndef lint -static char rcsid[] = "$Id: write.c,v 1.7 1995/05/30 04:46:40 rgrimes Exp $"; +static char rcsid[] = "$Id: write.c,v 1.8 1996/10/01 00:12:04 peter Exp $"; #endif #include "as.h" diff --git a/gnu/usr.bin/as/xmalloc.c b/gnu/usr.bin/as/xmalloc.c index 4ecb289237de4..b6a6932c1e536 100644 --- a/gnu/usr.bin/as/xmalloc.c +++ b/gnu/usr.bin/as/xmalloc.c @@ -42,7 +42,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: xmalloc.c,v 1.2 1993/11/03 00:52:32 paul Exp $"; +static char rcsid[] = "$Id: xmalloc.c,v 1.3 1995/05/30 04:46:42 rgrimes Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/as/xrealloc.c b/gnu/usr.bin/as/xrealloc.c index 8b2db1623d57f..057d4a27dac11 100644 --- a/gnu/usr.bin/as/xrealloc.c +++ b/gnu/usr.bin/as/xrealloc.c @@ -43,7 +43,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: xrealloc.c,v 1.2 1993/11/03 00:52:34 paul Exp $"; +static char rcsid[] = "$Id: xrealloc.c,v 1.3 1995/05/30 04:46:42 rgrimes Exp $"; #endif diff --git a/gnu/usr.bin/bc/bc.1 b/gnu/usr.bin/bc/bc.1 index 2aef706119a72..480087b055f3e 100644 --- a/gnu/usr.bin/bc/bc.1 +++ b/gnu/usr.bin/bc/bc.1 @@ -25,7 +25,7 @@ .\" Western Washington University .\" Bellingham, WA 98226-9062 .\" -.\" $Id: bc.1,v 1.4 1996/11/04 03:54:58 steve Exp $ +.\" $Id: bc.1,v 1.3.2.1 1996/11/06 09:23:50 phk Exp $ .\" .TH bc 1 .\" "Command Manual" v1.03 "Nov 2, 1994" .SH NAME diff --git a/gnu/usr.bin/bison/Makefile b/gnu/usr.bin/bison/Makefile index 89f0ed5977864..696e4fc4a5713 100644 --- a/gnu/usr.bin/bison/Makefile +++ b/gnu/usr.bin/bison/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/09/10 13:23:43 peter Exp $ .PATH: ${.CURDIR}/../../../contrib/bison diff --git a/gnu/usr.bin/bison/data/Makefile b/gnu/usr.bin/bison/data/Makefile index 55bb8e31684f4..711477fdf3419 100644 --- a/gnu/usr.bin/bison/data/Makefile +++ b/gnu/usr.bin/bison/data/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/10/27 21:50:59 joerg Exp $ +# $Id: Makefile,v 1.2.2.1 1997/08/21 12:39:00 jmg Exp $ BISONDIR=${.CURDIR}/../../../../contrib/bison diff --git a/gnu/usr.bin/bison/doc/Makefile b/gnu/usr.bin/bison/doc/Makefile index e8cbe7c9cadcb..43c497b0ed619 100644 --- a/gnu/usr.bin/bison/doc/Makefile +++ b/gnu/usr.bin/bison/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/09/10 13:23:46 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1997/04/11 16:58:15 asami Exp $ INFO = bison INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile index 0ee469fa75470..c720c65bf3ceb 100644 --- a/gnu/usr.bin/cc/Makefile +++ b/gnu/usr.bin/cc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.6 1996/09/19 15:37:58 peter Exp $ +# $Id: Makefile,v 1.7 1996/10/13 17:37:02 peter Exp $ # # The order of some of these are rather important. Some depend on previous diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc index c90dcf7d65269..9b131a8ff24b0 100644 --- a/gnu/usr.bin/cc/Makefile.inc +++ b/gnu/usr.bin/cc/Makefile.inc @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc,v 1.16 1996/09/21 14:27:22 peter Exp $ +# $Id: Makefile.inc,v 1.17 1996/10/01 03:44:29 peter Exp $ # # Sometimes this is .include'd several times... diff --git a/gnu/usr.bin/cc/c++/Makefile b/gnu/usr.bin/cc/c++/Makefile index 5557c627dfdc9..4eb3926dc2536 100644 --- a/gnu/usr.bin/cc/c++/Makefile +++ b/gnu/usr.bin/cc/c++/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.5 1994/11/15 04:51:26 phk Exp $ # PROG = c++ diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile index 5e801de45adbc..d8d3201a49a1a 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile +++ b/gnu/usr.bin/cc/c++filt/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1996/10/13 17:37:03 peter Exp $ # PROG = c++filt diff --git a/gnu/usr.bin/cc/cc/Makefile b/gnu/usr.bin/cc/cc/Makefile index f62c1d9c813ed..6c69712fc687e 100644 --- a/gnu/usr.bin/cc/cc/Makefile +++ b/gnu/usr.bin/cc/cc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.9 1996/02/09 16:18:56 mpp Exp $ +# $Id: Makefile,v 1.10 1996/09/19 15:38:13 peter Exp $ # PROG = cc diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index a6b67f21f04cd..0ce0311fea464 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.9 1996/09/21 14:27:26 peter Exp $ +# $Id: Makefile,v 1.9.2.1 1997/06/29 06:05:03 pst Exp $ # PROG = cc1 diff --git a/gnu/usr.bin/cc/cc1obj/Makefile b/gnu/usr.bin/cc/cc1obj/Makefile index f82c44fe2fbe9..ff70d1f98b0c0 100644 --- a/gnu/usr.bin/cc/cc1obj/Makefile +++ b/gnu/usr.bin/cc/cc1obj/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1996/09/21 14:27:29 peter Exp $ +# $Id: Makefile,v 1.2.2.1 1997/06/29 06:05:06 pst Exp $ # PROG = cc1obj diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index 9bd0db6fa490a..f327b778933f0 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.9 1996/09/21 14:27:32 peter Exp $ +# $Id: Makefile,v 1.9.2.1 1997/06/29 06:05:07 pst Exp $ # #First, so that we get cp/tree.c and cp/expr.c instead of the C version diff --git a/gnu/usr.bin/cc/cc_int/Makefile b/gnu/usr.bin/cc/cc_int/Makefile index a3b940c62d617..a45dc333cf4da 100644 --- a/gnu/usr.bin/cc/cc_int/Makefile +++ b/gnu/usr.bin/cc/cc_int/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.11 1996/09/21 17:49:45 jkh Exp $ +# $Id: Makefile,v 1.11.2.1 1997/06/29 06:05:09 pst Exp $ # .include "../Makefile.inc" diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 6b0c8623c4e83..378745355895e 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1996/09/19 15:47:16 peter Exp $ # # diff --git a/gnu/usr.bin/cc/cpp/Makefile b/gnu/usr.bin/cc/cpp/Makefile index 8ffd1ab31f4fe..1702fa48969c5 100644 --- a/gnu/usr.bin/cc/cpp/Makefile +++ b/gnu/usr.bin/cc/cpp/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.6 1996/09/23 04:14:30 peter Exp $ +# $Id: Makefile,v 1.7 1996/09/23 16:12:38 bde Exp $ # PROG = cpp diff --git a/gnu/usr.bin/cc/doc/Makefile b/gnu/usr.bin/cc/doc/Makefile index 2826535db62ab..0b378ad2a6afe 100644 --- a/gnu/usr.bin/cc/doc/Makefile +++ b/gnu/usr.bin/cc/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/19 15:47:47 peter Exp $ +# $Id: Makefile,v 1.3.2.1 1997/04/11 16:58:17 asami Exp $ INFO = gcc cpp reno gxxint diff --git a/gnu/usr.bin/cc/f77/Makefile b/gnu/usr.bin/cc/f77/Makefile index e7ed05100edb4..fed2b5693e20f 100644 --- a/gnu/usr.bin/cc/f77/Makefile +++ b/gnu/usr.bin/cc/f77/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1994/10/25 14:36:49 ljo Exp $ +# $Id: Makefile,v 1.2 1996/01/16 10:21:40 graichen Exp $ # PROG = f77 diff --git a/gnu/usr.bin/cc/libgcc/Makefile b/gnu/usr.bin/cc/libgcc/Makefile index 9117c5279bebe..4888a43cbd100 100644 --- a/gnu/usr.bin/cc/libgcc/Makefile +++ b/gnu/usr.bin/cc/libgcc/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.12 1996/09/21 14:27:38 peter Exp $ +# $Id: Makefile,v 1.13 1996/10/01 03:47:36 peter Exp $ # LIB= gcc diff --git a/gnu/usr.bin/cpio/Makefile b/gnu/usr.bin/cpio/Makefile index 9995c2e219fa8..cc8ecc6cb0792 100644 --- a/gnu/usr.bin/cpio/Makefile +++ b/gnu/usr.bin/cpio/Makefile @@ -1,7 +1,7 @@ # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997, # even though it may live in src/gnu/... -# $Id: Makefile,v 1.6 1997/04/03 11:20:09 obrien Exp $ +# $Id: Makefile,v 1.3.2.1 1997/08/21 08:24:08 obrien Exp $ .PATH: ${.CURDIR}/../../../contrib/cpio diff --git a/gnu/usr.bin/cpio/doc/Makefile b/gnu/usr.bin/cpio/doc/Makefile index 050e0e9e1991e..f2086ba6d4e48 100644 --- a/gnu/usr.bin/cpio/doc/Makefile +++ b/gnu/usr.bin/cpio/doc/Makefile @@ -1,7 +1,7 @@ # Note that this files is under a "BSD" copyright (c) by David O'Brien 1997, # even though it may live in src/gnu/... -# $Id: Makefile,v 1.2 1997/08/21 08:26:55 obrien Exp $ +# $Id: Makefile,v 1.2.2.1 1997/08/21 08:50:35 obrien Exp $ .PATH: ${.CURDIR}/../../../../contrib/cpio diff --git a/gnu/usr.bin/cvs/Makefile b/gnu/usr.bin/cvs/Makefile index a15127d6652b9..aa1e24832f1e9 100644 --- a/gnu/usr.bin/cvs/Makefile +++ b/gnu/usr.bin/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1995/12/10 22:58:29 peter Exp $ +# $Id: Makefile,v 1.8 1996/08/20 23:52:29 peter Exp $ SUBDIR = lib cvs contrib cvsbug doc tools diff --git a/gnu/usr.bin/cvs/contrib/Makefile b/gnu/usr.bin/cvs/contrib/Makefile index 5802e060e901b..e2a8aab9b61ef 100644 --- a/gnu/usr.bin/cvs/contrib/Makefile +++ b/gnu/usr.bin/cvs/contrib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1996/09/05 08:43:50 peter Exp $ +# $Id: Makefile,v 1.6.2.1 1997/06/28 03:27:49 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/contrib/easy-import.pl b/gnu/usr.bin/cvs/contrib/easy-import.pl index 0d7defec45c24..67bbdf3335774 100644 --- a/gnu/usr.bin/cvs/contrib/easy-import.pl +++ b/gnu/usr.bin/cvs/contrib/easy-import.pl @@ -8,7 +8,7 @@ # # Written by Jörg Wunsch, 95/03/07, and placed in the public domain. # -# $Id: easy-import.pl,v 1.9.2.2 1997/06/28 03:27:50 peter Exp $ +# $Id: easy-import.pl,v 1.9.2.3 1997/08/22 07:04:30 peter Exp $ require "complete.pl"; require "getopts.pl"; @@ -22,7 +22,7 @@ sub scan_opts $dont_do_it = "-n" if $opt_n; if($opt_v) { - print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.9.2.2 $' . "\n"; # 'emacs kludge + print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.9.2.3 $' . "\n"; # 'emacs kludge exit 0; } die "usage: $0 [-v] [-n] [moduledir]\n" . diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index 55a86d4fa5570..7317391b4012f 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 1996/08/20 23:54:06 peter Exp $ +# $Id: Makefile,v 1.14.2.1 1997/06/28 03:27:50 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/cvsbug/Makefile b/gnu/usr.bin/cvs/cvsbug/Makefile index 0222324927f5c..e6b92ba7bfb30 100644 --- a/gnu/usr.bin/cvs/cvsbug/Makefile +++ b/gnu/usr.bin/cvs/cvsbug/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 1996/08/20 23:55:14 peter Exp $ +# $Id: Makefile,v 1.4.2.1 1997/06/28 03:27:51 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/doc/Makefile b/gnu/usr.bin/cvs/doc/Makefile index 01fa0e120da08..c0a58165393e6 100644 --- a/gnu/usr.bin/cvs/doc/Makefile +++ b/gnu/usr.bin/cvs/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5.2.1 1997/04/11 16:58:19 asami Exp $ +# $Id: Makefile,v 1.5.2.2 1997/06/28 03:27:52 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/lib/Makefile b/gnu/usr.bin/cvs/lib/Makefile index 2760f55b9badb..f5961fb557260 100644 --- a/gnu/usr.bin/cvs/lib/Makefile +++ b/gnu/usr.bin/cvs/lib/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1996/08/20 23:56:38 peter Exp $ +# $Id: Makefile,v 1.11.2.1 1997/06/28 03:27:52 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/cvs/tools/Makefile b/gnu/usr.bin/cvs/tools/Makefile index f54e35566d571..c273dbacaec50 100644 --- a/gnu/usr.bin/cvs/tools/Makefile +++ b/gnu/usr.bin/cvs/tools/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 1995/12/11 01:58:50 peter Exp $ +# $Id: Makefile,v 1.1 1996/08/21 00:04:28 peter Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile index 436519a7e32a9..f6ae2938cedc5 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -1,5 +1,5 @@ # Makefile for dialog -# $Id: Makefile,v 1.3 1994/10/11 23:51:06 ache Exp $ +# $Id: Makefile,v 1.4 1994/10/28 03:12:45 ache Exp $ PROG= dialog MAN1= dialog.1 diff --git a/gnu/usr.bin/diff/Makefile b/gnu/usr.bin/diff/Makefile index a6bc38509bd3c..b4b1378b100b4 100644 --- a/gnu/usr.bin/diff/Makefile +++ b/gnu/usr.bin/diff/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.5 1995/10/29 09:08:32 peter Exp $ PROG= diff SRCS= diff.c analyze.c io.c context.c ed.c normal.c ifdef.c util.c dir.c \ version.c getopt.c getopt1.c side.c cmpbuf.c diff --git a/gnu/usr.bin/diff/doc/Makefile b/gnu/usr.bin/diff/doc/Makefile index b43a8afbb80c3..4159856833756 100644 --- a/gnu/usr.bin/diff/doc/Makefile +++ b/gnu/usr.bin/diff/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1995/10/29 09:08:35 peter Exp $ +# $Id: Makefile,v 1.1.4.1 1997/04/11 16:58:23 asami Exp $ INFO = diff diff --git a/gnu/usr.bin/gdb/gdb/Makefile b/gnu/usr.bin/gdb/gdb/Makefile index 8932c4207b737..fea51258e3eaf 100644 --- a/gnu/usr.bin/gdb/gdb/Makefile +++ b/gnu/usr.bin/gdb/gdb/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.13.2.5 1997/05/01 16:34:46 pst Exp $ +# $Id: Makefile,v 1.13.2.6 1997/05/02 11:26:03 gj Exp $ PROG = gdb diff --git a/gnu/usr.bin/gdb/gdbreplay/Makefile b/gnu/usr.bin/gdb/gdbreplay/Makefile index a7b6f512a2ef4..db2ae0b2c5abb 100644 --- a/gnu/usr.bin/gdb/gdbreplay/Makefile +++ b/gnu/usr.bin/gdb/gdbreplay/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1997/04/25 22:25:22 pst Exp $ +# $Id: Makefile,v 1.1.1.1.2.1 1997/04/26 17:34:51 pst Exp $ GDBDIR= ${.CURDIR}/../../../../contrib/gdb .PATH: ${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/gdb/gdbserver/Makefile b/gnu/usr.bin/gdb/gdbserver/Makefile index 73abac8816166..4e6da9edc7662 100644 --- a/gnu/usr.bin/gdb/gdbserver/Makefile +++ b/gnu/usr.bin/gdb/gdbserver/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1.1.1 1997/04/25 22:25:50 pst Exp $ +# $Id: Makefile,v 1.1.1.1.2.1 1997/04/26 17:34:52 pst Exp $ GDBDIR= ${.CURDIR}/../../../../contrib/gdb .PATH: ${GDBDIR}/gdb/gdbserver diff --git a/gnu/usr.bin/genclass/Makefile b/gnu/usr.bin/genclass/Makefile index 808b01231c2a3..50c65bf02184a 100644 --- a/gnu/usr.bin/genclass/Makefile +++ b/gnu/usr.bin/genclass/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.1 1996/10/03 23:00:09 peter Exp $ # GPPDIR= ${.CURDIR}/../../../contrib/libg++ diff --git a/gnu/usr.bin/gperf/Makefile b/gnu/usr.bin/gperf/Makefile index 55c9e84acba06..d3bb1eaa88522 100644 --- a/gnu/usr.bin/gperf/Makefile +++ b/gnu/usr.bin/gperf/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.1 1996/09/10 14:03:08 peter Exp $ .PATH: ${.CURDIR}/../../../contrib/gperf .PATH: ${.CURDIR}/../../../contrib/gperf/src diff --git a/gnu/usr.bin/gperf/doc/Makefile b/gnu/usr.bin/gperf/doc/Makefile index 2ca3250fa347a..69758e3055466 100644 --- a/gnu/usr.bin/gperf/doc/Makefile +++ b/gnu/usr.bin/gperf/doc/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/09/10 14:03:12 peter Exp $ +# $Id: Makefile,v 1.1.2.1 1997/04/11 16:58:27 asami Exp $ INFO = gperf INFOSECTION= "Programming & development tools." diff --git a/gnu/usr.bin/groff/Makefile b/gnu/usr.bin/groff/Makefile index 8a94ac08963b0..8a07e7da4f2e4 100644 --- a/gnu/usr.bin/groff/Makefile +++ b/gnu/usr.bin/groff/Makefile @@ -1,6 +1,6 @@ # Makefile for groff # -# $Id$ +# $Id: Makefile,v 2.1 1996/09/08 01:27:08 pst Exp $ SUBDIR= libgroff libdriver libbib \ addftinfo eqn \ diff --git a/gnu/usr.bin/groff/Makefile.cfg b/gnu/usr.bin/groff/Makefile.cfg index f001303da582f..44cb5f5d29475 100644 --- a/gnu/usr.bin/groff/Makefile.cfg +++ b/gnu/usr.bin/groff/Makefile.cfg @@ -1,4 +1,4 @@ -# $Id: Makefile.cfg,v 2.1 1996/09/08 01:27:10 pst Exp $ +# $Id: Makefile.cfg,v 2.1.2.1 1997/03/08 19:09:01 bde Exp $ BINDIR?= /usr/bin SHELL= /bin/sh diff --git a/gnu/usr.bin/groff/Makefile.dev b/gnu/usr.bin/groff/Makefile.dev index f60f56cddba76..0eecafe46e213 100644 --- a/gnu/usr.bin/groff/Makefile.dev +++ b/gnu/usr.bin/groff/Makefile.dev @@ -2,7 +2,7 @@ # Client Makefiles define DEV and DEVFILES and provide rules for # individual font files # -# $Id: Makefile.dev,v 2.1 1996/09/08 01:27:11 pst Exp $ +# $Id: Makefile.dev,v 2.2 1996/09/09 18:05:00 phk Exp $ .include "../Makefile.cfg" diff --git a/gnu/usr.bin/groff/devX100-12/Makefile b/gnu/usr.bin/groff/devX100-12/Makefile index a505681cd599d..93e5cb3e94a84 100644 --- a/gnu/usr.bin/groff/devX100-12/Makefile +++ b/gnu/usr.bin/groff/devX100-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:19 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:13 phk Exp $ # # Generic groff font makefile # diff --git a/gnu/usr.bin/groff/devX100/Makefile b/gnu/usr.bin/groff/devX100/Makefile index e322dea81a920..be9a928418142 100644 --- a/gnu/usr.bin/groff/devX100/Makefile +++ b/gnu/usr.bin/groff/devX100/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:17 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:12 phk Exp $ # # Generic groff font makefile # diff --git a/gnu/usr.bin/groff/devX75-12/Makefile b/gnu/usr.bin/groff/devX75-12/Makefile index 0a281a3715f04..bde00037590d2 100644 --- a/gnu/usr.bin/groff/devX75-12/Makefile +++ b/gnu/usr.bin/groff/devX75-12/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:23 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:15 phk Exp $ # # Generic groff font makefile # diff --git a/gnu/usr.bin/groff/devX75/Makefile b/gnu/usr.bin/groff/devX75/Makefile index dab8bfd7c4352..64febb8054aa0 100644 --- a/gnu/usr.bin/groff/devX75/Makefile +++ b/gnu/usr.bin/groff/devX75/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1996/09/08 01:27:21 pst Exp $ +# $Id: Makefile,v 1.4 1996/09/09 18:05:14 phk Exp $ # # Generic groff font makefile # diff --git a/gnu/usr.bin/groff/libgroff/Makefile b/gnu/usr.bin/groff/libgroff/Makefile index 1061ea68e1e09..7538b4180924e 100644 --- a/gnu/usr.bin/groff/libgroff/Makefile +++ b/gnu/usr.bin/groff/libgroff/Makefile @@ -1,6 +1,6 @@ # Makefile for libgroff # -# $Id$ +# $Id: Makefile,v 1.4 1996/09/08 01:27:42 pst Exp $ # .include "../Makefile.inc" diff --git a/gnu/usr.bin/groff/troff/Makefile b/gnu/usr.bin/groff/troff/Makefile index 91f8bef1f5fa3..b30dc07422e6f 100644 --- a/gnu/usr.bin/groff/troff/Makefile +++ b/gnu/usr.bin/groff/troff/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 1997/08/23 05:26:32 jmg Exp $ +# $Id: Makefile,v 1.8.2.1 1997/08/25 12:54:43 jmg Exp $ PROG= troff SRCS= env.cc node.cc input.cc div.cc symbol.cc dictionary.cc reg.cc \ diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index 14938734c39a1..039576bb21827 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 5.3 (Berkeley) 5/12/90 -# $Id: Makefile,v 1.12 1996/08/28 15:45:32 bde Exp $ +# $Id: Makefile,v 1.12.2.1 1997/06/29 06:05:13 pst Exp $ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ diff --git a/gnu/usr.bin/gzip/bits.c b/gnu/usr.bin/gzip/bits.c index fae17801fa649..27bff48f71c1d 100644 --- a/gnu/usr.bin/gzip/bits.c +++ b/gnu/usr.bin/gzip/bits.c @@ -60,7 +60,7 @@ #endif #ifdef RCSID -static char rcsid[] = "$Id: bits.c,v 1.3 1993/10/14 00:32:24 nate Exp $"; +static char rcsid[] = "$Id: bits.c,v 1.4 1995/05/30 05:00:30 rgrimes Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/crypt.c b/gnu/usr.bin/gzip/crypt.c index cbce024a01aac..57f62340ecda6 100644 --- a/gnu/usr.bin/gzip/crypt.c +++ b/gnu/usr.bin/gzip/crypt.c @@ -2,5 +2,5 @@ * Hardly worth copyrighting :-) */ #ifdef RCSID -static char rcsid[] = "$Id: crypt.c,v 0.6 1993/03/22 09:48:47 jloup Exp $"; +static char rcsid[] = "$Id: crypt.c,v 1.3 1993/10/14 00:32:26 nate Exp $"; #endif diff --git a/gnu/usr.bin/gzip/deflate.c b/gnu/usr.bin/gzip/deflate.c index 0bc0ed4108153..5ed86205973bc 100644 --- a/gnu/usr.bin/gzip/deflate.c +++ b/gnu/usr.bin/gzip/deflate.c @@ -68,7 +68,7 @@ #include "lzw.h" /* just for consistency checking */ #ifdef RCSID -static char rcsid[] = "$Id: deflate.c,v 1.3 1993/10/14 00:32:29 nate Exp $"; +static char rcsid[] = "$Id: deflate.c,v 1.4 1995/05/30 05:00:31 rgrimes Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/gzip.c b/gnu/usr.bin/gzip/gzip.c index 846b69e6b37a1..c10b4a095b828 100644 --- a/gnu/usr.bin/gzip/gzip.c +++ b/gnu/usr.bin/gzip/gzip.c @@ -45,7 +45,7 @@ static char *license_msg[] = { */ #ifdef RCSID -static char rcsid[] = "$Id: gzip.c,v 1.3 1993/10/14 00:32:48 nate Exp $"; +static char rcsid[] = "$Id: gzip.c,v 1.4 1995/05/30 05:00:33 rgrimes Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/gzip/inflate.c b/gnu/usr.bin/gzip/inflate.c index a53d013dbcbba..a59d0ae5e1326 100644 --- a/gnu/usr.bin/gzip/inflate.c +++ b/gnu/usr.bin/gzip/inflate.c @@ -97,7 +97,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: inflate.c,v 1.3 1993/10/14 00:32:55 nate Exp $"; +static char rcsid[] = "$Id: inflate.c,v 1.4 1995/05/30 05:00:37 rgrimes Exp $"; #endif #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/lzw.c b/gnu/usr.bin/gzip/lzw.c index 12bf5c611d0cc..92b3ce4c5515e 100644 --- a/gnu/usr.bin/gzip/lzw.c +++ b/gnu/usr.bin/gzip/lzw.c @@ -3,7 +3,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: lzw.c,v 0.9 1993/06/10 13:27:31 jloup Exp $"; +static char rcsid[] = "$Id: lzw.c,v 1.3 1993/10/14 00:32:59 nate Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/match.S b/gnu/usr.bin/gzip/match.S index 4a3d681c3d2bc..6ff3623082037 100644 --- a/gnu/usr.bin/gzip/match.S +++ b/gnu/usr.bin/gzip/match.S @@ -9,7 +9,7 @@ * Kristoffer Eriksson <ske@pkmab.se> */ -/* $Id: match.S,v 0.14 1993/06/11 18:33:24 jloup Exp $ */ +/* $Id: match.S,v 1.3 1993/10/14 00:33:02 nate Exp $ */ /* Preprocess with -DNO_UNDERLINE if your C compiler does not prefix * external symbols with an underline character '_'. diff --git a/gnu/usr.bin/gzip/revision.h b/gnu/usr.bin/gzip/revision.h index f99b65f9bbd25..4e5362fb2c6f3 100644 --- a/gnu/usr.bin/gzip/revision.h +++ b/gnu/usr.bin/gzip/revision.h @@ -13,4 +13,4 @@ # undef LZW #endif -/* $Id: revision.h,v 0.25 1993/06/24 08:29:52 jloup Exp $ */ +/* $Id: revision.h,v 1.3 1993/10/14 00:33:05 nate Exp $ */ diff --git a/gnu/usr.bin/gzip/tailor.h b/gnu/usr.bin/gzip/tailor.h index 840733ab50e26..a3e6321680357 100644 --- a/gnu/usr.bin/gzip/tailor.h +++ b/gnu/usr.bin/gzip/tailor.h @@ -8,7 +8,7 @@ * The target dependent functions should be defined in tailor.c. */ -/* $Id: tailor.h,v 1.3 1993/10/14 00:33:08 nate Exp $ */ +/* $Id: tailor.h,v 1.4 1995/05/30 05:00:38 rgrimes Exp $ */ #if defined(__MSDOS__) && !defined(MSDOS) # define MSDOS diff --git a/gnu/usr.bin/gzip/trees.c b/gnu/usr.bin/gzip/trees.c index d5b41c8ab7d17..b3f452f4cb90d 100644 --- a/gnu/usr.bin/gzip/trees.c +++ b/gnu/usr.bin/gzip/trees.c @@ -59,7 +59,7 @@ #include "gzip.h" #ifdef RCSID -static char rcsid[] = "$Id: trees.c,v 1.3 1993/10/14 00:33:11 nate Exp $"; +static char rcsid[] = "$Id: trees.c,v 1.4 1995/05/30 05:00:40 rgrimes Exp $"; #endif /* =========================================================================== diff --git a/gnu/usr.bin/gzip/unlzh.c b/gnu/usr.bin/gzip/unlzh.c index e318e5ed94187..f8d7989588d65 100644 --- a/gnu/usr.bin/gzip/unlzh.c +++ b/gnu/usr.bin/gzip/unlzh.c @@ -4,7 +4,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: unlzh.c,v 1.2 1993/06/24 10:59:01 jloup Exp $"; +static char rcsid[] = "$Id: unlzh.c,v 1.2 1993/10/14 00:33:14 nate Exp $"; #endif #include <stdio.h> diff --git a/gnu/usr.bin/gzip/unlzw.c b/gnu/usr.bin/gzip/unlzw.c index fe2110fc347ac..d873fb0323cc6 100644 --- a/gnu/usr.bin/gzip/unlzw.c +++ b/gnu/usr.bin/gzip/unlzw.c @@ -8,7 +8,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: unlzw.c,v 1.3 1993/10/14 00:33:17 nate Exp $"; +static char rcsid[] = "$Id: unlzw.c,v 1.4 1995/05/30 05:00:41 rgrimes Exp $"; #endif #include <sys/types.h> diff --git a/gnu/usr.bin/gzip/unpack.c b/gnu/usr.bin/gzip/unpack.c index a00fdaefc6b26..447052de75dce 100644 --- a/gnu/usr.bin/gzip/unpack.c +++ b/gnu/usr.bin/gzip/unpack.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: unpack.c,v 1.4 1993/06/11 19:25:36 jloup Exp $"; +static char rcsid[] = "$Id: unpack.c,v 1.3 1993/10/14 00:33:20 nate Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/unzip.c b/gnu/usr.bin/gzip/unzip.c index 7e287a157ad38..eda8046986c37 100644 --- a/gnu/usr.bin/gzip/unzip.c +++ b/gnu/usr.bin/gzip/unzip.c @@ -14,7 +14,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: unzip.c,v 0.13 1993/06/10 13:29:00 jloup Exp $"; +static char rcsid[] = "$Id: unzip.c,v 1.3 1993/10/14 00:33:24 nate Exp $"; #endif #include "tailor.h" diff --git a/gnu/usr.bin/gzip/util.c b/gnu/usr.bin/gzip/util.c index 2cddf92f8e072..e4eb06c7fa339 100644 --- a/gnu/usr.bin/gzip/util.c +++ b/gnu/usr.bin/gzip/util.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: util.c,v 1.3 1993/10/14 00:33:26 nate Exp $"; +static char rcsid[] = "$Id: util.c,v 1.4 1995/05/30 05:00:43 rgrimes Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/gzip/zgrep.getopt b/gnu/usr.bin/gzip/zgrep.getopt index 7c1483da3b53a..26fd0ee5aeef2 100644 --- a/gnu/usr.bin/gzip/zgrep.getopt +++ b/gnu/usr.bin/gzip/zgrep.getopt @@ -26,7 +26,7 @@ # # zgrep - search possibly compressed files for a regular expression # -# $Id$ +# $Id: zgrep.getopt,v 1.2.2.1 1997/08/17 13:47:02 joerg Exp $ PATH=/bin:/usr/bin:$PATH; export PATH diff --git a/gnu/usr.bin/gzip/zip.c b/gnu/usr.bin/gzip/zip.c index 507d1616efdde..67de7c97c5f15 100644 --- a/gnu/usr.bin/gzip/zip.c +++ b/gnu/usr.bin/gzip/zip.c @@ -5,7 +5,7 @@ */ #ifdef RCSID -static char rcsid[] = "$Id: zip.c,v 0.17 1993/06/10 13:29:25 jloup Exp $"; +static char rcsid[] = "$Id: zip.c,v 1.3 1993/10/14 00:33:32 nate Exp $"; #endif #include <ctype.h> diff --git a/gnu/usr.bin/ld/Makefile b/gnu/usr.bin/ld/Makefile index d64cc19bd6a96..bbf65140fcc5d 100644 --- a/gnu/usr.bin/ld/Makefile +++ b/gnu/usr.bin/ld/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.22 1997/06/29 21:36:33 bde Exp $ +# $Id: Makefile,v 1.18.2.1 1997/08/08 02:17:57 jdp Exp $ # PROG= ld diff --git a/gnu/usr.bin/ld/PORTING b/gnu/usr.bin/ld/PORTING index 017f6d77095e7..bb368e2cdbec9 100644 --- a/gnu/usr.bin/ld/PORTING +++ b/gnu/usr.bin/ld/PORTING @@ -1,4 +1,4 @@ -$Id: PORTING,v 1.1 1994/12/23 22:56:08 nate Exp $ +$Id: PORTING,v 1.2 1996/10/01 01:22:14 peter Exp $ This document describes some of the machine dependent parts in ld(1) and rtld(?) Most of the machine dependencies are a result of different ways in which diff --git a/gnu/usr.bin/ld/cplus-dem.c b/gnu/usr.bin/ld/cplus-dem.c index 27f56ef6d392a..30333965c8896 100644 --- a/gnu/usr.bin/ld/cplus-dem.c +++ b/gnu/usr.bin/ld/cplus-dem.c @@ -5,7 +5,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)cplus-dem.c 5.4 (Berkeley) 4/30/91";*/ -static char rcsid[] = "$Id: cplus-dem.c,v 1.3 1993/11/09 04:18:51 paul Exp $"; +static char rcsid[] = "$Id: cplus-dem.c,v 1.4 1995/05/30 05:01:42 rgrimes Exp $"; #endif /* not lint */ /* Demangler for GNU C++ diff --git a/gnu/usr.bin/ld/dynamic.h b/gnu/usr.bin/ld/dynamic.h index 56d53bb0327d5..a5b3b7b568544 100644 --- a/gnu/usr.bin/ld/dynamic.h +++ b/gnu/usr.bin/ld/dynamic.h @@ -27,7 +27,7 @@ * (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: dynamic.h,v 1.4 1997/05/13 10:23:46 dfr Exp $ + * $Id: dynamic.h,v 1.1.2.1 1997/08/08 02:17:58 jdp Exp $ */ #ifndef __DYNAMIC_H__ diff --git a/gnu/usr.bin/ld/i386/md-static-funcs.c b/gnu/usr.bin/ld/i386/md-static-funcs.c index 8a672ed9db870..e9ef86675f282 100644 --- a/gnu/usr.bin/ld/i386/md-static-funcs.c +++ b/gnu/usr.bin/ld/i386/md-static-funcs.c @@ -1,5 +1,5 @@ /* - * $Id: md-static-funcs.c,v 1.3 1995/11/02 18:47:55 nate Exp $ + * $Id: md-static-funcs.c,v 1.4 1996/10/01 01:27:54 peter Exp $ * * Called by ld.so when onanating. * This *must* be a static function, so it is not called through a jmpslot. diff --git a/gnu/usr.bin/ld/i386/md.c b/gnu/usr.bin/ld/i386/md.c index 4798f7c39b42f..c52c3776a1d04 100644 --- a/gnu/usr.bin/ld/i386/md.c +++ b/gnu/usr.bin/ld/i386/md.c @@ -27,7 +27,7 @@ * (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: md.c,v 1.16 1997/02/22 15:46:33 peter Exp $ + * $Id: md.c,v 1.13.2.1 1997/08/08 02:18:05 jdp Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/i386/md.h b/gnu/usr.bin/ld/i386/md.h index 879d4c810b1a4..4e69cc85af244 100644 --- a/gnu/usr.bin/ld/i386/md.h +++ b/gnu/usr.bin/ld/i386/md.h @@ -27,7 +27,7 @@ * (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: md.h,v 1.17 1997/04/30 05:18:08 jdp Exp $ + * $Id: md.h,v 1.13.2.1 1997/08/08 02:18:05 jdp Exp $ */ #ifndef __MD_H__ diff --git a/gnu/usr.bin/ld/i386/mdprologue.S b/gnu/usr.bin/ld/i386/mdprologue.S index 1de0f7200f1a9..79bf4dadd486d 100644 --- a/gnu/usr.bin/ld/i386/mdprologue.S +++ b/gnu/usr.bin/ld/i386/mdprologue.S @@ -27,7 +27,7 @@ * (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: mdprologue.S,v 1.7 1994/12/04 07:42:44 mycroft Exp $ + * $Id: mdprologue.S,v 1.6 1995/03/04 17:46:22 nate Exp $ */ /* diff --git a/gnu/usr.bin/ld/ld.1 b/gnu/usr.bin/ld/ld.1 index 31aec522bacaa..7c82854cd4be9 100644 --- a/gnu/usr.bin/ld/ld.1 +++ b/gnu/usr.bin/ld/ld.1 @@ -27,7 +27,7 @@ .\" (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: ld.1,v 1.18 1997/05/31 04:28:53 jdp Exp $ +.\" $Id: ld.1,v 1.12.2.2 1997/08/08 02:17:59 jdp Exp $ .\" .Dd October 14, 1993 .Dt LD 1 diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index c3d5a741361e4..859e31bfe1a11 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)ld.c 6.10 (Berkeley) 5/22/91"; Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: ld.c,v 1.45 1997/05/13 10:23:46 dfr Exp $ + * $Id: ld.c,v 1.36.2.2 1997/08/08 02:18:00 jdp Exp $ */ /* Define how to initialize system-dependent header fields. */ diff --git a/gnu/usr.bin/ld/ld.h b/gnu/usr.bin/ld/ld.h index f8cd02ebbb4b3..74be82eca4103 100644 --- a/gnu/usr.bin/ld/ld.h +++ b/gnu/usr.bin/ld/ld.h @@ -1,5 +1,5 @@ /* - * $Id: ld.h,v 1.20 1997/02/22 15:46:21 peter Exp $ + * $Id: ld.h,v 1.17.2.1 1997/08/08 02:18:01 jdp Exp $ */ /*- * This code is derived from software copyrighted by the Free Software diff --git a/gnu/usr.bin/ld/ldconfig/Makefile b/gnu/usr.bin/ld/ldconfig/Makefile index a9708c127f4d9..d7c3a6b0e12b3 100644 --- a/gnu/usr.bin/ld/ldconfig/Makefile +++ b/gnu/usr.bin/ld/ldconfig/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.11 1997/06/29 21:40:54 bde Exp $ +# $Id: Makefile,v 1.8.2.1 1997/08/08 02:18:06 jdp Exp $ PROG= ldconfig SRCS= ldconfig.c shlib.c support.c diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.8 b/gnu/usr.bin/ld/ldconfig/ldconfig.8 index 63b7f0602c38b..4da35c9ce0748 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.8 +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.8 @@ -27,7 +27,7 @@ .\" (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: ldconfig.8,v 1.13 1997/07/11 14:45:40 jkh Exp $ +.\" $Id: ldconfig.8,v 1.9.2.2 1997/08/08 02:18:07 jdp Exp $ .\" .Dd October 3, 1993 .Dt LDCONFIG 8 diff --git a/gnu/usr.bin/ld/ldconfig/ldconfig.c b/gnu/usr.bin/ld/ldconfig/ldconfig.c index e8e0e3b965a0f..01acc8f4b5f0f 100644 --- a/gnu/usr.bin/ld/ldconfig/ldconfig.c +++ b/gnu/usr.bin/ld/ldconfig/ldconfig.c @@ -27,7 +27,7 @@ * (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: ldconfig.c,v 1.19 1997/07/11 14:45:41 jkh Exp $ + * $Id: ldconfig.c,v 1.15.2.2 1997/08/08 02:18:10 jdp Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/ldd/Makefile b/gnu/usr.bin/ld/ldd/Makefile index 03351032e15d6..7016aad9b829e 100644 --- a/gnu/usr.bin/ld/ldd/Makefile +++ b/gnu/usr.bin/ld/ldd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 1993/12/16 21:51:27 nate Exp $ +# $Id: Makefile,v 1.4 1996/10/01 02:16:12 peter Exp $ PROG= ldd SRCS= ldd.c sods.c diff --git a/gnu/usr.bin/ld/ldd/ldd.c b/gnu/usr.bin/ld/ldd/ldd.c index ae3d377a82646..ce5dd9596ac7d 100644 --- a/gnu/usr.bin/ld/ldd/ldd.c +++ b/gnu/usr.bin/ld/ldd/ldd.c @@ -27,7 +27,7 @@ * (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: ldd.c,v 1.13 1997/02/22 15:46:43 peter Exp $ + * $Id: ldd.c,v 1.8.2.3 1997/08/08 02:18:11 jdp Exp $ */ #include <sys/types.h> diff --git a/gnu/usr.bin/ld/ldd/sods.c b/gnu/usr.bin/ld/ldd/sods.c index b6781a40282b9..162c6baa5181b 100644 --- a/gnu/usr.bin/ld/ldd/sods.c +++ b/gnu/usr.bin/ld/ldd/sods.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sods.c,v 1.4 1997/02/22 15:46:44 peter Exp $ + * $Id: sods.c,v 1.1.2.1 1997/08/08 02:18:12 jdp Exp $ */ #include <assert.h> diff --git a/gnu/usr.bin/ld/lib.c b/gnu/usr.bin/ld/lib.c index e05b3c14e162e..6fc904a5d5a9d 100644 --- a/gnu/usr.bin/ld/lib.c +++ b/gnu/usr.bin/ld/lib.c @@ -30,7 +30,7 @@ Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: lib.c,v 1.21 1997/02/22 15:46:22 peter Exp $ - library routines + * $Id: lib.c,v 1.18.2.1 1997/08/08 02:18:02 jdp Exp $ - library routines */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rrs.c b/gnu/usr.bin/ld/rrs.c index f15cdaab923fd..aebd9449236a7 100644 --- a/gnu/usr.bin/ld/rrs.c +++ b/gnu/usr.bin/ld/rrs.c @@ -27,7 +27,7 @@ * (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: rrs.c,v 1.22 1997/05/13 10:23:47 dfr Exp $ + * $Id: rrs.c,v 1.17.2.1 1997/08/08 02:18:02 jdp Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rtld/Makefile b/gnu/usr.bin/ld/rtld/Makefile index 182afd7fb3696..43fd3ecde0ed3 100644 --- a/gnu/usr.bin/ld/rtld/Makefile +++ b/gnu/usr.bin/ld/rtld/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.21 1996/10/01 01:51:40 peter Exp $ +# $Id: Makefile,v 1.21.2.1 1997/05/08 07:11:32 asami Exp $ PROG= ld.so SRCS= mdprologue.S rtld.c malloc.c shlib.c md.c support.c sbrk.c diff --git a/gnu/usr.bin/ld/rtld/malloc.c b/gnu/usr.bin/ld/rtld/malloc.c index 938e9a7898142..8a78b095e132d 100644 --- a/gnu/usr.bin/ld/rtld/malloc.c +++ b/gnu/usr.bin/ld/rtld/malloc.c @@ -33,7 +33,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)malloc.c 5.11 (Berkeley) 2/23/91";*/ -static char *rcsid = "$Id: malloc.c,v 1.8 1997/06/22 17:48:35 phk Exp $"; +static char *rcsid = "$Id: malloc.c,v 1.5.2.1 1997/08/08 02:18:13 jdp Exp $"; #endif /* LIBC_SCCS and not lint */ /* diff --git a/gnu/usr.bin/ld/rtld/rtld.1 b/gnu/usr.bin/ld/rtld/rtld.1 index 2b6b2a1d3d4de..86f18a6380505 100644 --- a/gnu/usr.bin/ld/rtld/rtld.1 +++ b/gnu/usr.bin/ld/rtld/rtld.1 @@ -1,4 +1,4 @@ -.\" $Id: rtld.1,v 1.14 1997/05/27 13:46:40 max Exp $ +.\" $Id: rtld.1,v 1.6.2.2 1997/08/08 02:18:13 jdp Exp $ .\" .\" Copyright (c) 1995 Paul Kranenburg .\" All rights reserved. diff --git a/gnu/usr.bin/ld/rtld/rtld.c b/gnu/usr.bin/ld/rtld/rtld.c index 26afd37c3169f..89b497eea85d7 100644 --- a/gnu/usr.bin/ld/rtld/rtld.c +++ b/gnu/usr.bin/ld/rtld/rtld.c @@ -27,7 +27,7 @@ * (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: rtld.c,v 1.48 1997/08/19 23:33:45 nate Exp $ + * $Id: rtld.c,v 1.40.2.4 1997/09/02 14:18:52 nate Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/rtld/sbrk.c b/gnu/usr.bin/ld/rtld/sbrk.c index f99fb64043994..c5f5a1db64385 100644 --- a/gnu/usr.bin/ld/rtld/sbrk.c +++ b/gnu/usr.bin/ld/rtld/sbrk.c @@ -27,7 +27,7 @@ * (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: sbrk.c,v 1.1 1993/12/11 21:06:36 jkh Exp $ + * $Id: sbrk.c,v 1.2 1996/10/01 01:52:03 peter Exp $ */ #include <machine/vmparam.h> diff --git a/gnu/usr.bin/ld/shlib.c b/gnu/usr.bin/ld/shlib.c index 44e30f0b75ea2..2a26b6aa894c1 100644 --- a/gnu/usr.bin/ld/shlib.c +++ b/gnu/usr.bin/ld/shlib.c @@ -27,7 +27,7 @@ * (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: shlib.c,v 1.15 1996/04/20 18:27:56 jdp Exp $ + * $Id: shlib.c,v 1.16 1996/10/01 01:22:38 peter Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/shlib.h b/gnu/usr.bin/ld/shlib.h index 796d37e7636cc..f09ed8c4aecef 100644 --- a/gnu/usr.bin/ld/shlib.h +++ b/gnu/usr.bin/ld/shlib.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *- - * $Id$ + * $Id: shlib.h,v 1.1 1996/10/01 01:22:40 peter Exp $ */ /* diff --git a/gnu/usr.bin/ld/sparc/md-static-funcs.c b/gnu/usr.bin/ld/sparc/md-static-funcs.c index 2672cb596be60..8446daa5256c8 100644 --- a/gnu/usr.bin/ld/sparc/md-static-funcs.c +++ b/gnu/usr.bin/ld/sparc/md-static-funcs.c @@ -1,6 +1,6 @@ /* - * $Id: md-static-funcs.c,v 1.2 1993/12/08 10:28:56 pk Exp $ + * $Id: md-static-funcs.c,v 1.2 1993/12/11 12:02:08 jkh Exp $ * * Simple SPARC relocations for the benefit of self-relocation of ld.so * avoiding the use of global variables (ie. reloc_bitshift[] et. al.). diff --git a/gnu/usr.bin/ld/sparc/md.c b/gnu/usr.bin/ld/sparc/md.c index 68831a6054f90..6abab408502c6 100644 --- a/gnu/usr.bin/ld/sparc/md.c +++ b/gnu/usr.bin/ld/sparc/md.c @@ -27,7 +27,7 @@ * (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: md.c,v 1.8 1994/06/15 22:41:19 rich Exp $ + * $Id: md.c,v 1.9 1996/10/01 01:28:06 peter Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/sparc/md.h b/gnu/usr.bin/ld/sparc/md.h index 421cbd6c7d3dd..0dc427a08c302 100644 --- a/gnu/usr.bin/ld/sparc/md.h +++ b/gnu/usr.bin/ld/sparc/md.h @@ -27,7 +27,7 @@ * (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: md.h,v 1.7 1995/03/04 17:46:25 nate Exp $ + * $Id: md.h,v 1.8 1996/10/01 01:28:10 peter Exp $ */ /* diff --git a/gnu/usr.bin/ld/sparc/mdprologue.S b/gnu/usr.bin/ld/sparc/mdprologue.S index d3236a3866710..6a0ec5cc810b5 100644 --- a/gnu/usr.bin/ld/sparc/mdprologue.S +++ b/gnu/usr.bin/ld/sparc/mdprologue.S @@ -27,7 +27,7 @@ * (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: mdprologue.S,v 1.3 1994/02/13 20:43:13 jkh Exp $ + * $Id: mdprologue.S,v 1.4 1995/03/04 17:46:26 nate Exp $ */ /* diff --git a/gnu/usr.bin/ld/support.c b/gnu/usr.bin/ld/support.c index 128f0b6ef4a84..1c5473cad02d5 100644 --- a/gnu/usr.bin/ld/support.c +++ b/gnu/usr.bin/ld/support.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *- - * $Id: support.c,v 1.1 1996/10/01 01:22:42 peter Exp $ + * $Id: support.c,v 1.1.2.1 1997/02/03 00:50:35 jdp Exp $ */ #include <sys/types.h> #include <string.h> diff --git a/gnu/usr.bin/ld/support.h b/gnu/usr.bin/ld/support.h index 5be1e31c19d92..7911fa21bbd34 100644 --- a/gnu/usr.bin/ld/support.h +++ b/gnu/usr.bin/ld/support.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *- - * $Id$ + * $Id: support.h,v 1.1 1996/10/01 01:22:44 peter Exp $ */ /* diff --git a/gnu/usr.bin/ld/symbol.c b/gnu/usr.bin/ld/symbol.c index 10738705569cc..fa875da6a2db3 100644 --- a/gnu/usr.bin/ld/symbol.c +++ b/gnu/usr.bin/ld/symbol.c @@ -31,7 +31,7 @@ /* * symbol table routines - * $Id: symbol.c,v 1.6 1994/12/23 22:30:54 nate Exp $ + * $Id: symbol.c,v 1.7 1996/10/01 01:22:45 peter Exp $ */ /* Create the symbol table entries for `etext', `edata' and `end'. */ diff --git a/gnu/usr.bin/ld/symseg.h b/gnu/usr.bin/ld/symseg.h index 112dd6f0a7f59..0b9a58476bd50 100644 --- a/gnu/usr.bin/ld/symseg.h +++ b/gnu/usr.bin/ld/symseg.h @@ -4,7 +4,7 @@ * Foundation. * * from: @(#)symseg.h 5.4 (Berkeley) 4/30/91 - * $Id: symseg.h,v 1.3 1993/11/09 04:19:05 paul Exp $ + * $Id: symseg.h,v 1.4 1995/05/30 05:01:47 rgrimes Exp $ */ /* GDB symbol table format definitions. diff --git a/gnu/usr.bin/ld/warnings.c b/gnu/usr.bin/ld/warnings.c index 9bf8b16988039..ebce857be1a68 100644 --- a/gnu/usr.bin/ld/warnings.c +++ b/gnu/usr.bin/ld/warnings.c @@ -30,7 +30,7 @@ Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: warnings.c,v 1.15 1997/02/22 15:46:27 peter Exp $ + * $Id: warnings.c,v 1.12.2.1 1997/08/08 02:18:03 jdp Exp $ */ #include <sys/param.h> diff --git a/gnu/usr.bin/ld/xbits.c b/gnu/usr.bin/ld/xbits.c index edcb16af843c3..6fd922aa012b0 100644 --- a/gnu/usr.bin/ld/xbits.c +++ b/gnu/usr.bin/ld/xbits.c @@ -27,7 +27,7 @@ * (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: xbits.c,v 1.3 1994/02/13 20:41:50 jkh Exp $ + * $Id: xbits.c,v 1.4 1996/10/01 01:22:51 peter Exp $ */ /* diff --git a/gnu/usr.bin/man/Makefile.shprog b/gnu/usr.bin/man/Makefile.shprog index 665a194917ff3..f329a8cfe881a 100644 --- a/gnu/usr.bin/man/Makefile.shprog +++ b/gnu/usr.bin/man/Makefile.shprog @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.shprog,v 1.1 1995/10/21 14:27:04 bde Exp $ # This may become bsd.shprog.mk. The general version would have to handle: # - arbitrary sed substitutions. diff --git a/gnu/usr.bin/man/apropos/Makefile b/gnu/usr.bin/man/apropos/Makefile index c109d3c04391b..4ecc857ce4d1f 100644 --- a/gnu/usr.bin/man/apropos/Makefile +++ b/gnu/usr.bin/man/apropos/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1996/03/09 17:31:08 wosch Exp wosch $ +# $Id: Makefile,v 1.11 1996/03/10 18:52:05 wosch Exp $ SHPROG= apropos diff --git a/gnu/usr.bin/man/apropos/apropos.sh b/gnu/usr.bin/man/apropos/apropos.sh index f726f1fb8b316..a1b1d0d397b41 100644 --- a/gnu/usr.bin/man/apropos/apropos.sh +++ b/gnu/usr.bin/man/apropos/apropos.sh @@ -15,7 +15,7 @@ # The University of Texas at Austin # Austin, Texas 78712 # -# $Id: apropos.sh,v 1.6 1996/09/14 23:20:33 wosch Exp $ +# $Id: apropos.sh,v 1.7 1996/09/27 17:36:50 wosch Exp $ PATH=/bin:/usr/bin:$PATH diff --git a/gnu/usr.bin/man/catman/catman.1 b/gnu/usr.bin/man/catman/catman.1 index a0a72197758e5..a93f3ac6af016 100644 --- a/gnu/usr.bin/man/catman/catman.1 +++ b/gnu/usr.bin/man/catman/catman.1 @@ -24,7 +24,7 @@ .\" .\" /usr/bin/catman - preformat man pages .\" -.\" $Id: catman.1,v 1.9 1996/12/09 07:25:41 mpp Exp $ +.\" $Id: catman.1,v 1.8.2.1 1996/12/10 17:23:05 joerg Exp $ .Dd Mar 12, 1995 .Dt CATMAN 1 .Os diff --git a/gnu/usr.bin/man/catman/catman.perl b/gnu/usr.bin/man/catman/catman.perl index 4f4ce5c42d6c9..6c7ec8e18c00d 100644 --- a/gnu/usr.bin/man/catman/catman.perl +++ b/gnu/usr.bin/man/catman/catman.perl @@ -26,7 +26,7 @@ # # /usr/bin/catman - preformat man pages # -# $Id: catman.perl,v 1.7 1996/03/21 18:17:41 wosch Exp $ +# $Id: catman.perl,v 1.8 1996/08/27 20:04:01 wosch Exp $ sub usage { diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.1 b/gnu/usr.bin/man/makewhatis/makewhatis.1 index aa55f94d34cc0..647c2f9d5a0b9 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.1 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.1 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: makewhatis.1,v 1.8 1996/12/14 23:27:20 mpp Exp $ +.\" $Id: makewhatis.1,v 1.6.2.2 1996/12/22 23:05:27 mpp Exp $ .Dd Jan, 12, 1995 .Dt MAKEWHATIS 1 .Os FreeBSD 2.1 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 index 932d31d27765f..7bdc721d40dba 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.8 +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.8 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: makewhatis.local.8,v 1.3 1996/12/09 07:26:04 mpp Exp $ +.\" $Id: makewhatis.local.8,v 1.2.2.1 1996/12/10 17:23:18 joerg Exp $ .Dd April, 26, 1996 .Dt MAKEWHATIS.LOCAL 8 .Os FreeBSD 2.2 diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh index 9203cfb839c9d..d5a340cfe0963 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.local.sh +++ b/gnu/usr.bin/man/makewhatis/makewhatis.local.sh @@ -33,7 +33,7 @@ # # PS: this wrapper works also for catman(1) # -# $Id: makewhatis.local.sh,v 1.2 1996/05/22 00:57:40 wosch Exp $ +# $Id: makewhatis.local.sh,v 1.3 1996/08/27 20:04:07 wosch Exp $ PATH=/bin:/usr/bin:$PATH; export PATH opt= dirs= localdirs= diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index b3f685ffebcad..61d1b9556237d 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.perl +++ b/gnu/usr.bin/man/makewhatis/makewhatis.perl @@ -26,7 +26,7 @@ # # makewhatis -- update the whatis database in the man directories. # -# $Id: makewhatis.perl,v 1.10 1996/05/22 00:57:42 wosch Exp $ +# $Id: makewhatis.perl,v 1.11 1996/08/27 20:04:09 wosch Exp $ sub usage { diff --git a/gnu/usr.bin/patch/EXTERN.h b/gnu/usr.bin/patch/EXTERN.h index 96dd888a933d1..bde49f4be63c5 100644 --- a/gnu/usr.bin/patch/EXTERN.h +++ b/gnu/usr.bin/patch/EXTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/EXTERN.h,v 1.2 1995/05/30 05:02:26 rgrimes Exp $ * * $Log: EXTERN.h,v $ + * Revision 1.2 1995/05/30 05:02:26 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/patch/INTERN.h b/gnu/usr.bin/patch/INTERN.h index b718b1d4cc9f0..5f3beab6236c3 100644 --- a/gnu/usr.bin/patch/INTERN.h +++ b/gnu/usr.bin/patch/INTERN.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/INTERN.h,v 1.2 1995/05/30 05:02:27 rgrimes Exp $ * * $Log: INTERN.h,v $ + * Revision 1.2 1995/05/30 05:02:27 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/patch/common.h b/gnu/usr.bin/patch/common.h index 4bb99e0248196..e58f3f2f2cb9b 100644 --- a/gnu/usr.bin/patch/common.h +++ b/gnu/usr.bin/patch/common.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.2 1993/09/22 16:51:03 rich Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/common.h,v 1.3 1995/05/30 05:02:30 rgrimes Exp $ * * $Log: common.h,v $ + * Revision 1.3 1995/05/30 05:02:30 rgrimes + * Remove trailing whitespace. + * * Revision 1.2 1993/09/22 16:51:03 rich * Increaed the fixed static buffer sizes and maximum hunk size that * otherwise causes the XFree86 1.3 patch set to fail. diff --git a/gnu/usr.bin/patch/inp.c b/gnu/usr.bin/patch/inp.c index 63eb5a4094526..eb484606d62d2 100644 --- a/gnu/usr.bin/patch/inp.c +++ b/gnu/usr.bin/patch/inp.c @@ -1,4 +1,4 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.3 1995/05/30 05:02:31 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.c,v 1.3.6.1 1997/03/17 22:32:26 jmg Exp $ * * Log: inp.c,v * diff --git a/gnu/usr.bin/patch/inp.h b/gnu/usr.bin/patch/inp.h index ea07ee89d8a18..40999d5c897c4 100644 --- a/gnu/usr.bin/patch/inp.h +++ b/gnu/usr.bin/patch/inp.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/inp.h,v 1.2 1995/05/30 05:02:33 rgrimes Exp $ * * $Log: inp.h,v $ + * Revision 1.2 1995/05/30 05:02:33 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/patch/patch.1 b/gnu/usr.bin/patch/patch.1 index 6eec2b4ca80b5..77391e1b5ac1b 100644 --- a/gnu/usr.bin/patch/patch.1 +++ b/gnu/usr.bin/patch/patch.1 @@ -1,8 +1,13 @@ .\" -*- nroff -*- .rn '' }` -'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.4 1994/02/25 21:45:59 phk Exp $ +'\" $Header: /home/ncvs/src/gnu/usr.bin/patch/patch.1,v 1.5 1996/02/07 23:47:55 jdp Exp $ '\" '\" $Log: patch.1,v $ +'\" Revision 1.5 1996/02/07 23:47:55 jdp +'\" Update the manual page to reflect the fact that an "Index" line +'\" now takes precedence over a context diff header for determining +'\" the name of the file to patch. +'\" '\" Revision 1.4 1994/02/25 21:45:59 phk '\" added the -C/-check again. '\" diff --git a/gnu/usr.bin/patch/patch.c b/gnu/usr.bin/patch/patch.c index a43e62b98e222..375cdacf3172e 100644 --- a/gnu/usr.bin/patch/patch.c +++ b/gnu/usr.bin/patch/patch.c @@ -1,5 +1,5 @@ char rcsid[] = - "$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.6 1995/05/30 05:02:34 rgrimes Exp $"; + "$Header: /home/ncvs/src/gnu/usr.bin/patch/patch.c,v 1.6.6.1 1997/03/17 22:32:26 jmg Exp $"; /* patch - a program to apply diffs to original files * diff --git a/gnu/usr.bin/patch/pch.c b/gnu/usr.bin/patch/pch.c index cc5d2c85e261e..c5d17f78fbd34 100644 --- a/gnu/usr.bin/patch/pch.c +++ b/gnu/usr.bin/patch/pch.c @@ -1,4 +1,4 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.8 1996/04/12 11:37:32 markm Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.c,v 1.8.2.1 1997/03/17 22:32:27 jmg Exp $ * * Log: pch.c,v * Revision 2.0.2.0 90/05/01 22:17:51 davison diff --git a/gnu/usr.bin/patch/pch.h b/gnu/usr.bin/patch/pch.h index 49670816989fd..d7f40e1d177f6 100644 --- a/gnu/usr.bin/patch/pch.h +++ b/gnu/usr.bin/patch/pch.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/pch.h,v 1.2 1995/05/30 05:02:36 rgrimes Exp $ * * $Log: pch.h,v $ + * Revision 1.2 1995/05/30 05:02:36 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/patch/util.h b/gnu/usr.bin/patch/util.h index 5bb36105d53bc..d2e17a897903c 100644 --- a/gnu/usr.bin/patch/util.h +++ b/gnu/usr.bin/patch/util.h @@ -1,4 +1,4 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.2 1995/05/30 05:02:38 rgrimes Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/util.h,v 1.2.6.1 1997/03/17 22:32:29 jmg Exp $ * * Log: util.h,v * Revision 2.0 86/09/17 15:40:06 lwall diff --git a/gnu/usr.bin/patch/version.c b/gnu/usr.bin/patch/version.c index dfd2e9a6bb860..740b82d3404cf 100644 --- a/gnu/usr.bin/patch/version.c +++ b/gnu/usr.bin/patch/version.c @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.c,v 1.2 1995/05/30 05:02:39 rgrimes Exp $ * * $Log: version.c,v $ + * Revision 1.2 1995/05/30 05:02:39 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/patch/version.h b/gnu/usr.bin/patch/version.h index f59ee261e6391..5a57bc5890481 100644 --- a/gnu/usr.bin/patch/version.h +++ b/gnu/usr.bin/patch/version.h @@ -1,6 +1,9 @@ -/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.1.1.1 1993/06/19 14:21:52 paul Exp $ +/* $Header: /home/ncvs/src/gnu/usr.bin/patch/version.h,v 1.2 1995/05/30 05:02:40 rgrimes Exp $ * * $Log: version.h,v $ + * Revision 1.2 1995/05/30 05:02:40 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1993/06/19 14:21:52 paul * b-maked patch-2.10 * diff --git a/gnu/usr.bin/perl/eg/ADB b/gnu/usr.bin/perl/eg/ADB index 09b93c302aae1..1d6da1a3465fd 100644 --- a/gnu/usr.bin/perl/eg/ADB +++ b/gnu/usr.bin/perl/eg/ADB @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/ADB,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/ADB,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ # This script is only useful when used in your crash directory. diff --git a/gnu/usr.bin/perl/eg/changes b/gnu/usr.bin/perl/eg/changes index 9835e1b6ddc24..e6acacb35f09a 100644 --- a/gnu/usr.bin/perl/eg/changes +++ b/gnu/usr.bin/perl/eg/changes @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/changes,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/changes,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ ($dir, $days) = @ARGV; $dir = '/' if $dir eq ''; diff --git a/gnu/usr.bin/perl/eg/dus b/gnu/usr.bin/perl/eg/dus index 94c648bd76267..d2903576975a4 100644 --- a/gnu/usr.bin/perl/eg/dus +++ b/gnu/usr.bin/perl/eg/dus @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/dus,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/dus,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # This script does a du -s on any directories in the current directory that # are not mount points for another filesystem. diff --git a/gnu/usr.bin/perl/eg/findcp b/gnu/usr.bin/perl/eg/findcp index 47e443820d88d..96c8ebc9f2eec 100644 --- a/gnu/usr.bin/perl/eg/findcp +++ b/gnu/usr.bin/perl/eg/findcp @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/findcp,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/findcp,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # This is a wrapper around the find command that pretends find has a switch # of the form -cp host:destination. It presumes your find implements -ls. diff --git a/gnu/usr.bin/perl/eg/findtar b/gnu/usr.bin/perl/eg/findtar index a60f10f76c320..1c9f823beea59 100644 --- a/gnu/usr.bin/perl/eg/findtar +++ b/gnu/usr.bin/perl/eg/findtar @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/findtar,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/findtar,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # findtar takes find-style arguments and spits out a tarfile on stdout. # It won't work unless your find supports -ls and your tar the I flag. diff --git a/gnu/usr.bin/perl/eg/g/gcp b/gnu/usr.bin/perl/eg/g/gcp index 3e44a9cf182bb..dca3cd6e03f3f 100644 --- a/gnu/usr.bin/perl/eg/g/gcp +++ b/gnu/usr.bin/perl/eg/g/gcp @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gcp,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gcp,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ # Here is a script to do global rcps. See man page. diff --git a/gnu/usr.bin/perl/eg/g/gcp.man b/gnu/usr.bin/perl/eg/g/gcp.man index 8985742fa4732..c188dc9698cbb 100644 --- a/gnu/usr.bin/perl/eg/g/gcp.man +++ b/gnu/usr.bin/perl/eg/g/gcp.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gcp.man,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gcp.man,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ .TH GCP 1C "13 May 1988" .SH NAME gcp \- global file copy diff --git a/gnu/usr.bin/perl/eg/g/ged b/gnu/usr.bin/perl/eg/g/ged index d296a84c913a8..ecc72103dac79 100644 --- a/gnu/usr.bin/perl/eg/g/ged +++ b/gnu/usr.bin/perl/eg/g/ged @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/ged,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/ged,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ # Does inplace edits on a set of files on a set of machines. # diff --git a/gnu/usr.bin/perl/eg/g/gsh b/gnu/usr.bin/perl/eg/g/gsh index 3322a02ff74f0..3d9cd6a09a829 100644 --- a/gnu/usr.bin/perl/eg/g/gsh +++ b/gnu/usr.bin/perl/eg/g/gsh @@ -1,6 +1,6 @@ #! /usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gsh,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gsh,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ # Do rsh globally--see man page diff --git a/gnu/usr.bin/perl/eg/g/gsh.man b/gnu/usr.bin/perl/eg/g/gsh.man index 00eafb66d8c26..6675ca33ac914 100644 --- a/gnu/usr.bin/perl/eg/g/gsh.man +++ b/gnu/usr.bin/perl/eg/g/gsh.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/g/gsh.man,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/g/gsh.man,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ .TH GSH 8 "13 May 1988" .SH NAME gsh \- global shell diff --git a/gnu/usr.bin/perl/eg/muck.man b/gnu/usr.bin/perl/eg/muck.man index 1b45ee0325c01..c485cfd5811e9 100644 --- a/gnu/usr.bin/perl/eg/muck.man +++ b/gnu/usr.bin/perl/eg/muck.man @@ -1,4 +1,4 @@ -.\" $Header: /home/cvs/386BSD/ports/lang/perl/eg/muck.man,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +.\" $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/muck.man,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ .TH MUCK 1 "10 Jan 1989" .SH NAME muck \- make usage checker diff --git a/gnu/usr.bin/perl/eg/myrup b/gnu/usr.bin/perl/eg/myrup index b3185896ef985..52d8339ecad57 100644 --- a/gnu/usr.bin/perl/eg/myrup +++ b/gnu/usr.bin/perl/eg/myrup @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/myrup,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/myrup,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # This was a customization of ruptime requested by someone here who wanted # to be able to find the least loaded machine easily. It uses the diff --git a/gnu/usr.bin/perl/eg/nih b/gnu/usr.bin/perl/eg/nih index a376142cdd759..059eabb190a49 100644 --- a/gnu/usr.bin/perl/eg/nih +++ b/gnu/usr.bin/perl/eg/nih @@ -1,7 +1,7 @@ eval "exec /usr/bin/perl -Spi.bak $0 $*" if $running_under_some_shell; -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/nih,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/nih,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # This script makes #! scripts directly executable on machines that don't # support #!. It edits in place any scripts mentioned on the command line. diff --git a/gnu/usr.bin/perl/eg/relink b/gnu/usr.bin/perl/eg/relink index 69956c9a6738f..716f208d6d2ca 100644 --- a/gnu/usr.bin/perl/eg/relink +++ b/gnu/usr.bin/perl/eg/relink @@ -2,9 +2,13 @@ 'di'; 'ig00'; # -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/relink,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/relink,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # # $Log: relink,v $ +# Revision 1.1.1.1 1994/09/10 06:27:47 gclarkii +# Initial import of Perl 4.046 bmaked +# +# # Revision 1.1.1.1 1993/08/23 21:29:43 nate # PERL! # diff --git a/gnu/usr.bin/perl/eg/rename b/gnu/usr.bin/perl/eg/rename index b568406f86039..049890a1753e7 100644 --- a/gnu/usr.bin/perl/eg/rename +++ b/gnu/usr.bin/perl/eg/rename @@ -2,9 +2,13 @@ 'di'; 'ig00'; # -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/rename,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/rename,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # # $Log: rename,v $ +# Revision 1.1.1.1 1994/09/10 06:27:47 gclarkii +# Initial import of Perl 4.046 bmaked +# +# # Revision 1.1.1.1 1993/08/23 21:29:43 nate # PERL! # diff --git a/gnu/usr.bin/perl/eg/rmfrom b/gnu/usr.bin/perl/eg/rmfrom index 0c8fa2c86aafc..18a9fc794fe2e 100644 --- a/gnu/usr.bin/perl/eg/rmfrom +++ b/gnu/usr.bin/perl/eg/rmfrom @@ -1,6 +1,6 @@ #!/usr/bin/perl -n -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/rmfrom,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/rmfrom,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # A handy (but dangerous) script to put after a find ... -print. diff --git a/gnu/usr.bin/perl/eg/scan/scan_df b/gnu/usr.bin/perl/eg/scan/scan_df index 688738710a53d..2db989bb35574 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_df +++ b/gnu/usr.bin/perl/eg/scan/scan_df @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_df,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_df,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This report points out filesystems that are in danger of overflowing. diff --git a/gnu/usr.bin/perl/eg/scan/scan_last b/gnu/usr.bin/perl/eg/scan/scan_last index 6621120d3e44d..6c109b43d499e 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_last +++ b/gnu/usr.bin/perl/eg/scan/scan_last @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_last,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_last,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This reports who was logged on at weird hours diff --git a/gnu/usr.bin/perl/eg/scan/scan_messages b/gnu/usr.bin/perl/eg/scan/scan_messages index a28cda858a17c..81fc714dcf4e8 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_messages +++ b/gnu/usr.bin/perl/eg/scan/scan_messages @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_messages,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_messages,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This prints out extraordinary console messages. You'll need to customize. diff --git a/gnu/usr.bin/perl/eg/scan/scan_passwd b/gnu/usr.bin/perl/eg/scan/scan_passwd index f9c53c7d2385a..9cfa77f4b135f 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_passwd +++ b/gnu/usr.bin/perl/eg/scan/scan_passwd @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_passwd,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_passwd,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This scans passwd file for security holes. diff --git a/gnu/usr.bin/perl/eg/scan/scan_ps b/gnu/usr.bin/perl/eg/scan/scan_ps index b0480d544c30c..9a99d1dddb188 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_ps +++ b/gnu/usr.bin/perl/eg/scan/scan_ps @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_ps,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_ps,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This looks for looping processes. diff --git a/gnu/usr.bin/perl/eg/scan/scan_sudo b/gnu/usr.bin/perl/eg/scan/scan_sudo index a95a6092b4673..81e014872d442 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_sudo +++ b/gnu/usr.bin/perl/eg/scan/scan_sudo @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_sudo,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_sudo,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # Analyze the sudo log. diff --git a/gnu/usr.bin/perl/eg/scan/scan_suid b/gnu/usr.bin/perl/eg/scan/scan_suid index a730e0aaee162..8a694e5f20146 100644 --- a/gnu/usr.bin/perl/eg/scan/scan_suid +++ b/gnu/usr.bin/perl/eg/scan/scan_suid @@ -1,6 +1,6 @@ #!/usr/bin/perl -P -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scan_suid,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scan_suid,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # Look for new setuid root files. diff --git a/gnu/usr.bin/perl/eg/scan/scanner b/gnu/usr.bin/perl/eg/scan/scanner index f773e87e8f8ae..64e2469aa0ead 100644 --- a/gnu/usr.bin/perl/eg/scan/scanner +++ b/gnu/usr.bin/perl/eg/scan/scanner @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/scan/scanner,v 1.1.1.1 1993/08/23 21:29:44 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/scan/scanner,v 1.1.1.1 1994/09/10 06:27:48 gclarkii Exp $ # This runs all the scan_* routines on all the machines in /etc/ghosts. # We run this every morning at about 6 am: diff --git a/gnu/usr.bin/perl/eg/shmkill b/gnu/usr.bin/perl/eg/shmkill index e8d1b11b3630a..67513f2c0a869 100644 --- a/gnu/usr.bin/perl/eg/shmkill +++ b/gnu/usr.bin/perl/eg/shmkill @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/shmkill,v 1.1.1.1 1993/08/23 21:29:43 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/shmkill,v 1.1.1.1 1994/09/10 06:27:47 gclarkii Exp $ # A script to call from crontab periodically when people are leaving shared # memory sitting around unattached. diff --git a/gnu/usr.bin/perl/eg/van/empty b/gnu/usr.bin/perl/eg/van/empty index ee656e68563f8..ca9e5de64e6e7 100644 --- a/gnu/usr.bin/perl/eg/van/empty +++ b/gnu/usr.bin/perl/eg/van/empty @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/empty,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/empty,v 1.1.1.1 1994/09/10 06:27:49 gclarkii Exp $ # This script empties a trashcan. diff --git a/gnu/usr.bin/perl/eg/van/unvanish b/gnu/usr.bin/perl/eg/van/unvanish index 50459821546b8..06e1aa1245d13 100644 --- a/gnu/usr.bin/perl/eg/van/unvanish +++ b/gnu/usr.bin/perl/eg/van/unvanish @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/unvanish,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/unvanish,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $ sub it { if ($olddir ne '.') { diff --git a/gnu/usr.bin/perl/eg/van/vanexp b/gnu/usr.bin/perl/eg/van/vanexp index 79b78854d54c3..e30df855d4725 100644 --- a/gnu/usr.bin/perl/eg/van/vanexp +++ b/gnu/usr.bin/perl/eg/van/vanexp @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/vanexp,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/vanexp,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $ # This is for running from a find at night to expire old .deleteds diff --git a/gnu/usr.bin/perl/eg/van/vanish b/gnu/usr.bin/perl/eg/van/vanish index b79776a4ebdc9..769789ea2ad38 100644 --- a/gnu/usr.bin/perl/eg/van/vanish +++ b/gnu/usr.bin/perl/eg/van/vanish @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Header: /home/cvs/386BSD/ports/lang/perl/eg/van/vanish,v 1.1.1.1 1993/08/23 21:29:45 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/eg/van/vanish,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $ sub it { if ($olddir ne '.') { diff --git a/gnu/usr.bin/perl/emacs/perldb.pl b/gnu/usr.bin/perl/emacs/perldb.pl index 7c9e6513ea0cf..df932e9815293 100644 --- a/gnu/usr.bin/perl/emacs/perldb.pl +++ b/gnu/usr.bin/perl/emacs/perldb.pl @@ -3,7 +3,7 @@ package DB; # modified Perl debugger, to be run from Emacs in perldb-mode # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990 -$header = '$Header: /home/cvs/386BSD/ports/lang/perl/emacs/perldb.pl,v 1.1.1.1 1993/08/23 21:29:46 nate Exp $'; +$header = '$Header: /home/ncvs/src/gnu/usr.bin/perl/emacs/perldb.pl,v 1.1.1.1 1994/09/10 06:27:50 gclarkii Exp $'; # # This file is automatically included if you do perl -d. # It's probably not useful to include this yourself. @@ -13,6 +13,10 @@ $header = '$Header: /home/cvs/386BSD/ports/lang/perl/emacs/perldb.pl,v 1.1.1.1 1 # have a breakpoint. It also inserts a do 'perldb.pl' before the first line. # # $Log: perldb.pl,v $ +# Revision 1.1.1.1 1994/09/10 06:27:50 gclarkii +# Initial import of Perl 4.046 bmaked +# +# # Revision 1.1.1.1 1993/08/23 21:29:46 nate # PERL! # diff --git a/gnu/usr.bin/perl/lib/ctime.pl b/gnu/usr.bin/perl/lib/ctime.pl index 4c59754b7b81e..4a5686c52548f 100644 --- a/gnu/usr.bin/perl/lib/ctime.pl +++ b/gnu/usr.bin/perl/lib/ctime.pl @@ -3,7 +3,7 @@ ;# Waldemar Kebsch, Federal Republic of Germany, November 1988 ;# kebsch.pad@nixpbe.UUCP ;# Modified March 1990, Feb 1991 to properly handle timezones -;# $RCSfile: ctime.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: ctime.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:52 $ ;# Marion Hakanson (hakanson@cse.ogi.edu) ;# Oregon Graduate Institute of Science and Technology ;# diff --git a/gnu/usr.bin/perl/lib/gethostname.pl b/gnu/usr.bin/perl/lib/gethostname.pl index 2342bad7d7b9f..5c8c2c59b0b64 100644 --- a/gnu/usr.bin/perl/lib/gethostname.pl +++ b/gnu/usr.bin/perl/lib/gethostname.pl @@ -4,7 +4,7 @@ # Written 13-Feb-96 by Jörg Wunsch, interface business GmbH Dresden. # Placed in the public domain. # -# $Id: gethostname.pl,v 1.1 1996/02/13 13:17:49 joerg Exp $ +# $Id: gethostname.pl,v 1.2 1996/03/18 21:42:31 joerg Exp $ # package gethostname; diff --git a/gnu/usr.bin/perl/lib/getopt.pl b/gnu/usr.bin/perl/lib/getopt.pl index 6772d54aae206..6c3c4996f0871 100644 --- a/gnu/usr.bin/perl/lib/getopt.pl +++ b/gnu/usr.bin/perl/lib/getopt.pl @@ -1,4 +1,4 @@ -;# $RCSfile: getopt.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: getopt.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:52 $ ;# Process single-character switches with switch clustering. Pass one argument ;# which is a string containing all switches that take an argument. For each diff --git a/gnu/usr.bin/perl/lib/importenv.pl b/gnu/usr.bin/perl/lib/importenv.pl index c9ad330b6d037..2d7b7ee12e9fb 100644 --- a/gnu/usr.bin/perl/lib/importenv.pl +++ b/gnu/usr.bin/perl/lib/importenv.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/importenv.pl,v 1.1.1.1 1993/08/23 21:29:53 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/importenv.pl,v 1.1.1.1 1994/09/10 06:27:52 gclarkii Exp $ ;# This file, when interpreted, pulls the environment into normal variables. ;# Usage: diff --git a/gnu/usr.bin/perl/lib/perldb.pl b/gnu/usr.bin/perl/lib/perldb.pl index 1aadb934e979f..68f8252836715 100644 --- a/gnu/usr.bin/perl/lib/perldb.pl +++ b/gnu/usr.bin/perl/lib/perldb.pl @@ -4,7 +4,7 @@ package DB; # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990 # Johan Vromans -- upgrade to 4.0 pl 10 -$header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:51 $'; +$header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $'; # # This file is automatically included if you do perl -d. # It's probably not useful to include this yourself. @@ -14,6 +14,10 @@ $header = '$RCSfile: perldb.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:51 # have a breakpoint. It also inserts a do 'perldb.pl' before the first line. # # $Log: perldb.pl,v $ +# Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii +# Initial import of Perl 4.046 bmaked +# +# # Revision 1.1.1.1 1993/08/23 21:29:51 nate # PERL! # diff --git a/gnu/usr.bin/perl/lib/pwd.pl b/gnu/usr.bin/perl/lib/pwd.pl index 16baadcdcdd4b..8f78e7e70ec3e 100644 --- a/gnu/usr.bin/perl/lib/pwd.pl +++ b/gnu/usr.bin/perl/lib/pwd.pl @@ -1,8 +1,12 @@ ;# pwd.pl - keeps track of current working directory in PWD environment var ;# -;# $RCSfile: pwd.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: pwd.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ ;# ;# $Log: pwd.pl,v $ +;# Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii +;# Initial import of Perl 4.046 bmaked +;# +;# # Revision 1.1.1.1 1993/08/23 21:29:52 nate # PERL! # diff --git a/gnu/usr.bin/perl/lib/stat.pl b/gnu/usr.bin/perl/lib/stat.pl index 6186f5428d18c..cd9321c9966c2 100644 --- a/gnu/usr.bin/perl/lib/stat.pl +++ b/gnu/usr.bin/perl/lib/stat.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/stat.pl,v 1.1.1.1 1993/08/23 21:29:53 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/stat.pl,v 1.1.1.1 1994/09/10 06:27:53 gclarkii Exp $ ;# Usage: ;# require 'stat.pl'; diff --git a/gnu/usr.bin/perl/lib/syslog.pl b/gnu/usr.bin/perl/lib/syslog.pl index 94a4f6a19a008..e7122df5d1025 100644 --- a/gnu/usr.bin/perl/lib/syslog.pl +++ b/gnu/usr.bin/perl/lib/syslog.pl @@ -2,6 +2,10 @@ # syslog.pl # # $Log: syslog.pl,v $ +# Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii +# Initial import of Perl 4.046 bmaked +# +# # Revision 1.1.1.1 1993/08/23 21:29:51 nate # PERL! # diff --git a/gnu/usr.bin/perl/lib/termcap.pl b/gnu/usr.bin/perl/lib/termcap.pl index 81556dbd3fb4b..2e173baa33cf2 100644 --- a/gnu/usr.bin/perl/lib/termcap.pl +++ b/gnu/usr.bin/perl/lib/termcap.pl @@ -1,4 +1,4 @@ -;# $RCSfile: termcap.pl,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:29:52 $ +;# $RCSfile: termcap.pl,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ ;# ;# Usage: ;# require 'ioctl.pl'; diff --git a/gnu/usr.bin/perl/lib/validate.pl b/gnu/usr.bin/perl/lib/validate.pl index 4b901b6c314e2..df92731c9f7b8 100644 --- a/gnu/usr.bin/perl/lib/validate.pl +++ b/gnu/usr.bin/perl/lib/validate.pl @@ -1,4 +1,4 @@ -;# $Header: /home/cvs/386BSD/ports/lang/perl/lib/validate.pl,v 1.1.1.1 1993/08/23 21:29:51 nate Exp $ +;# $Header: /home/ncvs/src/gnu/usr.bin/perl/lib/validate.pl,v 1.1.1.1 1994/09/10 06:27:53 gclarkii Exp $ ;# The validate routine takes a single multiline string consisting of ;# lines containing a filename plus a file test to try on it. (The diff --git a/gnu/usr.bin/perl/misc/c2ph b/gnu/usr.bin/perl/misc/c2ph index 1a2e4b8306ea3..7214e3b1d43cd 100644 --- a/gnu/usr.bin/perl/misc/c2ph +++ b/gnu/usr.bin/perl/misc/c2ph @@ -10,7 +10,7 @@ # See the usage message for more. If this isn't enough, read the code. # -$RCSID = '$RCSfile: c2ph,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $'; +$RCSID = '$RCSfile: c2ph,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:38 $'; ###################################################################### diff --git a/gnu/usr.bin/perl/misc/pstruct b/gnu/usr.bin/perl/misc/pstruct index 5dfea04776f66..c9f9a04aa4ea3 100644 --- a/gnu/usr.bin/perl/misc/pstruct +++ b/gnu/usr.bin/perl/misc/pstruct @@ -10,7 +10,7 @@ # See the usage message for more. If this isn't enough, read the code. # -$RCSID = '$RCSfile: pstruct,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $'; +$RCSID = '$RCSfile: pstruct,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:39 $'; ###################################################################### diff --git a/gnu/usr.bin/perl/perl/EXTERN.h b/gnu/usr.bin/perl/perl/EXTERN.h index fec95bf609060..31c8caecca090 100644 --- a/gnu/usr.bin/perl/perl/EXTERN.h +++ b/gnu/usr.bin/perl/perl/EXTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: EXTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: EXTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:46 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: EXTERN.h,v $ + * Revision 1.2 1995/05/30 05:02:46 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/INTERN.h b/gnu/usr.bin/perl/perl/INTERN.h index d1792d852ea32..6a9417dceca45 100644 --- a/gnu/usr.bin/perl/perl/INTERN.h +++ b/gnu/usr.bin/perl/perl/INTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: INTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: INTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:47 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: INTERN.h,v $ + * Revision 1.2 1995/05/30 05:02:47 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/arg.h b/gnu/usr.bin/perl/perl/arg.h index b3f8d5a050ccb..53e5583b1924a 100644 --- a/gnu/usr.bin/perl/perl/arg.h +++ b/gnu/usr.bin/perl/perl/arg.h @@ -1,4 +1,4 @@ -/* $RCSfile: arg.h,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:24 $ +/* $RCSfile: arg.h,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:49 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: arg.h,v $ + * Revision 1.3 1995/05/30 05:02:49 rgrimes + * Remove trailing whitespace. + * * Revision 1.2 1994/09/11 03:17:24 gclarkii * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/array.c b/gnu/usr.bin/perl/perl/array.c index a413e3b2a6704..5436decde8f10 100644 --- a/gnu/usr.bin/perl/perl/array.c +++ b/gnu/usr.bin/perl/perl/array.c @@ -1,4 +1,4 @@ -/* $RCSfile: array.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:31 $ +/* $RCSfile: array.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:50 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: array.c,v $ + * Revision 1.2 1995/05/30 05:02:50 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:31 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/array.h b/gnu/usr.bin/perl/perl/array.h index 9b2207be765c2..97f97a57b6035 100644 --- a/gnu/usr.bin/perl/perl/array.h +++ b/gnu/usr.bin/perl/perl/array.h @@ -1,4 +1,4 @@ -/* $RCSfile: array.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: array.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:51 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: array.h,v $ + * Revision 1.2 1995/05/30 05:02:51 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/cmd.c b/gnu/usr.bin/perl/perl/cmd.c index 162926d0a3165..345258f7d780f 100644 --- a/gnu/usr.bin/perl/perl/cmd.c +++ b/gnu/usr.bin/perl/perl/cmd.c @@ -1,4 +1,4 @@ -/* $RCSfile: cmd.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: cmd.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:52 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: cmd.c,v $ + * Revision 1.2 1995/05/30 05:02:52 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:32 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/cmd.h b/gnu/usr.bin/perl/perl/cmd.h index da0fa8e7696d0..dc23a7ead278d 100644 --- a/gnu/usr.bin/perl/perl/cmd.h +++ b/gnu/usr.bin/perl/perl/cmd.h @@ -1,4 +1,4 @@ -/* $RCSfile: cmd.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: cmd.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:54 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: cmd.h,v $ + * Revision 1.2 1995/05/30 05:02:54 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/cons.c b/gnu/usr.bin/perl/perl/cons.c index bbf783ef7843e..c7de42152a439 100644 --- a/gnu/usr.bin/perl/perl/cons.c +++ b/gnu/usr.bin/perl/perl/cons.c @@ -1,4 +1,4 @@ -/* $RCSfile: cons.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: cons.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:02:56 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: cons.c,v $ + * Revision 1.2 1995/05/30 05:02:56 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:32 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/consarg.c b/gnu/usr.bin/perl/perl/consarg.c index f6738639c22fd..0f7faa07bb917 100644 --- a/gnu/usr.bin/perl/perl/consarg.c +++ b/gnu/usr.bin/perl/perl/consarg.c @@ -1,4 +1,4 @@ -/* $RCSfile: consarg.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:57 $ +/* $RCSfile: consarg.c,v $$Revision: 1.3.6.1 $$Date: 1997/08/08 20:54:50 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: consarg.c,v $ + * Revision 1.3.6.1 1997/08/08 20:54:50 joerg + * MFC: fix buffer overflow condition. + * * Revision 1.3 1995/05/30 05:02:57 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/perl/crypt.c b/gnu/usr.bin/perl/perl/crypt.c index 3e95f452cf7f4..fac3d61b4df57 100644 --- a/gnu/usr.bin/perl/perl/crypt.c +++ b/gnu/usr.bin/perl/perl/crypt.c @@ -36,7 +36,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /* from static char sccsid[] = "@(#)crypt.c 5.11 (Berkeley) 6/25/91"; */ -static char rcsid[] = "$Header: /home/ncvs/src/gnu/usr.bin/perl/perl/crypt.c,v 1.1.1.1 1994/09/10 06:27:37 gclarkii Exp $"; +static char rcsid[] = "$Header: /home/ncvs/src/gnu/usr.bin/perl/perl/crypt.c,v 1.2 1995/05/30 05:02:58 rgrimes Exp $"; #endif /* LIBC_SCCS and not lint */ #include <unistd.h> diff --git a/gnu/usr.bin/perl/perl/doarg.c b/gnu/usr.bin/perl/perl/doarg.c index 2a647875b536a..0f6133887619a 100644 --- a/gnu/usr.bin/perl/perl/doarg.c +++ b/gnu/usr.bin/perl/perl/doarg.c @@ -1,4 +1,4 @@ -/* $RCSfile: doarg.c,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:30 $ +/* $RCSfile: doarg.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:02:59 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: doarg.c,v $ + * Revision 1.3 1995/05/30 05:02:59 rgrimes + * Remove trailing whitespace. + * * Revision 1.2 1994/09/11 03:17:30 gclarkii * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/doio.c b/gnu/usr.bin/perl/perl/doio.c index 9c0731f6099f1..e4d17dc0339bc 100644 --- a/gnu/usr.bin/perl/perl/doio.c +++ b/gnu/usr.bin/perl/perl/doio.c @@ -1,4 +1,4 @@ -/* $RCSfile: doio.c,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:32 $ +/* $RCSfile: doio.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:03:00 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: doio.c,v $ + * Revision 1.3 1995/05/30 05:03:00 rgrimes + * Remove trailing whitespace. + * * Revision 1.2 1994/09/11 03:17:32 gclarkii * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/dolist.c b/gnu/usr.bin/perl/perl/dolist.c index 448a260ad4e74..59fac1f1e3cb7 100644 --- a/gnu/usr.bin/perl/perl/dolist.c +++ b/gnu/usr.bin/perl/perl/dolist.c @@ -1,4 +1,4 @@ -/* $RCSfile: dolist.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: dolist.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:01 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: dolist.c,v $ + * Revision 1.2 1995/05/30 05:03:01 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:32 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/dump.c b/gnu/usr.bin/perl/perl/dump.c index 7a07135efb377..e5f2865000295 100644 --- a/gnu/usr.bin/perl/perl/dump.c +++ b/gnu/usr.bin/perl/perl/dump.c @@ -1,4 +1,4 @@ -/* $RCSfile: dump.c,v $$Revision: 1.2 $$Date: 1994/09/11 03:17:33 $ +/* $RCSfile: dump.c,v $$Revision: 1.3 $$Date: 1995/05/30 05:03:02 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: dump.c,v $ + * Revision 1.3 1995/05/30 05:03:02 rgrimes + * Remove trailing whitespace. + * * Revision 1.2 1994/09/11 03:17:33 gclarkii * Changed AF_LOCAL to AF_LOCAL_XX so as not to conflict with 4.4 socket.h * Added casts to shutup warnings in doio.c diff --git a/gnu/usr.bin/perl/perl/eval.c b/gnu/usr.bin/perl/perl/eval.c index 40155f5549fca..d62e62b66a80b 100644 --- a/gnu/usr.bin/perl/perl/eval.c +++ b/gnu/usr.bin/perl/perl/eval.c @@ -1,4 +1,4 @@ -/* $RCSfile: eval.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:32 $ +/* $RCSfile: eval.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:03 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: eval.c,v $ + * Revision 1.2 1995/05/30 05:03:03 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:32 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/form.c b/gnu/usr.bin/perl/perl/form.c index cfb7aed218c83..a0d87ce3d235d 100644 --- a/gnu/usr.bin/perl/perl/form.c +++ b/gnu/usr.bin/perl/perl/form.c @@ -1,4 +1,4 @@ -/* $RCSfile: form.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: form.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:04 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: form.c,v $ + * Revision 1.2 1995/05/30 05:03:04 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/form.h b/gnu/usr.bin/perl/perl/form.h index 3f63289744cac..39d0a15f36aba 100644 --- a/gnu/usr.bin/perl/perl/form.h +++ b/gnu/usr.bin/perl/perl/form.h @@ -1,4 +1,4 @@ -/* $RCSfile: form.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: form.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:05 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: form.h,v $ + * Revision 1.2 1995/05/30 05:03:05 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/handy.h b/gnu/usr.bin/perl/perl/handy.h index df719841233bc..5509c67739c08 100644 --- a/gnu/usr.bin/perl/perl/handy.h +++ b/gnu/usr.bin/perl/perl/handy.h @@ -1,4 +1,4 @@ -/* $RCSfile: handy.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: handy.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:06 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: handy.h,v $ + * Revision 1.2 1995/05/30 05:03:06 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/hash.c b/gnu/usr.bin/perl/perl/hash.c index 5d9b5940a90df..a8cd4b12e261d 100644 --- a/gnu/usr.bin/perl/perl/hash.c +++ b/gnu/usr.bin/perl/perl/hash.c @@ -1,4 +1,4 @@ -/* $RCSfile: hash.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: hash.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:07 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: hash.c,v $ + * Revision 1.2 1995/05/30 05:03:07 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/hash.h b/gnu/usr.bin/perl/perl/hash.h index ddf2a11b064ea..bfec83b201cdd 100644 --- a/gnu/usr.bin/perl/perl/hash.h +++ b/gnu/usr.bin/perl/perl/hash.h @@ -1,4 +1,4 @@ -/* $RCSfile: hash.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: hash.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:08 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: hash.h,v $ + * Revision 1.2 1995/05/30 05:03:08 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/malloc.c b/gnu/usr.bin/perl/perl/malloc.c index 5cc86d9108825..ccae6d08b6cfe 100644 --- a/gnu/usr.bin/perl/perl/malloc.c +++ b/gnu/usr.bin/perl/perl/malloc.c @@ -1,6 +1,9 @@ -/* $RCSfile: malloc.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: malloc.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:09 $ * * $Log: malloc.c,v $ + * Revision 1.2 1995/05/30 05:03:09 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/perl.1 b/gnu/usr.bin/perl/perl/perl.1 index 4a88509848965..a590270d201e5 100644 --- a/gnu/usr.bin/perl/perl/perl.1 +++ b/gnu/usr.bin/perl/perl/perl.1 @@ -1,7 +1,10 @@ .rn '' }` -''' $RCSfile: perl.1,v $$Revision: 1.4 $$Date: 1997/08/30 12:22:46 $ +''' $RCSfile: perl.1,v $$Revision: 1.3.2.1 $$Date: 1997/10/12 08:11:42 $ ''' ''' $Log: perl.1,v $ +''' Revision 1.3.2.1 1997/10/12 08:11:42 jmg +''' MFC: spelling fixes +''' ''' Revision 1.4 1997/08/30 12:22:46 jmg ''' fix a few spelling changes ''' diff --git a/gnu/usr.bin/perl/perl/perl.c b/gnu/usr.bin/perl/perl/perl.c index de956af17499e..5e8afd818a279 100644 --- a/gnu/usr.bin/perl/perl/perl.c +++ b/gnu/usr.bin/perl/perl/perl.c @@ -1,4 +1,4 @@ -char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.5 $$Date: 1996/06/02 19:59:24 $\nPatch level: ###\n"; +char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.7 $$Date: 1996/06/30 09:47:56 $\nPatch level: ###\n"; /* * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,11 @@ char rcsid[] = "$RCSfile: perl.c,v $$Revision: 1.5 $$Date: 1996/06/02 19:59:24 $ * License or the Artistic License, as specified in the README file. * * $Log: perl.c,v $ + * Revision 1.7 1996/06/30 09:47:56 joerg + * Back out Nate's changes from rev. 1.6; our Perl has not been + * vulnerable since it used setreuid() as opposed to Posix saved IDs. + * The change broke setuid scripts. + * * Revision 1.5 1996/06/02 19:59:24 gpalmer * Use setreuid instead of seteuid for permissions management * diff --git a/gnu/usr.bin/perl/perl/perl.h b/gnu/usr.bin/perl/perl/perl.h index 7693aa0c81572..25424cca7218d 100644 --- a/gnu/usr.bin/perl/perl/perl.h +++ b/gnu/usr.bin/perl/perl/perl.h @@ -1,4 +1,4 @@ -/* $RCSfile: perl.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: perl.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:11 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: perl.h,v $ + * Revision 1.2 1995/05/30 05:03:11 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/regcomp.c b/gnu/usr.bin/perl/perl/regcomp.c index 0287778f2878a..c264a8ee6e029 100644 --- a/gnu/usr.bin/perl/perl/regcomp.c +++ b/gnu/usr.bin/perl/perl/regcomp.c @@ -7,9 +7,12 @@ * blame Henry for some of the lack of readability. */ -/* $RCSfile: regcomp.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: regcomp.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:14 $ * * $Log: regcomp.c,v $ + * Revision 1.2 1995/05/30 05:03:14 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/regcomp.h b/gnu/usr.bin/perl/perl/regcomp.h index b6b8c182aa3b0..8178189d21e77 100644 --- a/gnu/usr.bin/perl/perl/regcomp.h +++ b/gnu/usr.bin/perl/perl/regcomp.h @@ -1,6 +1,9 @@ -/* $RCSfile: regcomp.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: regcomp.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:15 $ * * $Log: regcomp.h,v $ + * Revision 1.2 1995/05/30 05:03:15 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/regexec.c b/gnu/usr.bin/perl/perl/regexec.c index b8353061b2565..a1f5ebb9eafa4 100644 --- a/gnu/usr.bin/perl/perl/regexec.c +++ b/gnu/usr.bin/perl/perl/regexec.c @@ -7,9 +7,12 @@ * blame Henry for some of the lack of readability. */ -/* $RCSfile: regexec.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: regexec.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:16 $ * * $Log: regexec.c,v $ + * Revision 1.2 1995/05/30 05:03:16 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/regexp.h b/gnu/usr.bin/perl/perl/regexp.h index 634b19b913cef..075db02a5dec7 100644 --- a/gnu/usr.bin/perl/perl/regexp.h +++ b/gnu/usr.bin/perl/perl/regexp.h @@ -5,9 +5,12 @@ * not the System V one. */ -/* $RCSfile: regexp.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: regexp.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:17 $ * * $Log: regexp.h,v $ + * Revision 1.2 1995/05/30 05:03:17 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/spat.h b/gnu/usr.bin/perl/perl/spat.h index 7c392b0de11a4..dea4561b1ea9d 100644 --- a/gnu/usr.bin/perl/perl/spat.h +++ b/gnu/usr.bin/perl/perl/spat.h @@ -1,4 +1,4 @@ -/* $RCSfile: spat.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: spat.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:18 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: spat.h,v $ + * Revision 1.2 1995/05/30 05:03:18 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/stab.c b/gnu/usr.bin/perl/perl/stab.c index 6edb599b0b17c..4b1dc4bf42251 100644 --- a/gnu/usr.bin/perl/perl/stab.c +++ b/gnu/usr.bin/perl/perl/stab.c @@ -1,4 +1,4 @@ -/* $RCSfile: stab.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:19 $ +/* $RCSfile: stab.c,v $$Revision: 1.2.6.1 $$Date: 1997/05/22 21:41:35 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: stab.c,v $ + * Revision 1.2.6.1 1997/05/22 21:41:35 imp + * MFG->2.2: Fix buffer overflow + * * Revision 1.2 1995/05/30 05:03:19 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/perl/stab.h b/gnu/usr.bin/perl/perl/stab.h index 9da5a4ac5282e..097657549df9a 100644 --- a/gnu/usr.bin/perl/perl/stab.h +++ b/gnu/usr.bin/perl/perl/stab.h @@ -1,4 +1,4 @@ -/* $RCSfile: stab.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: stab.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:20 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: stab.h,v $ + * Revision 1.2 1995/05/30 05:03:20 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/str.c b/gnu/usr.bin/perl/perl/str.c index 4d3bb5ab08fb3..e404f29cdb5cf 100644 --- a/gnu/usr.bin/perl/perl/str.c +++ b/gnu/usr.bin/perl/perl/str.c @@ -1,4 +1,4 @@ -/* $RCSfile: str.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:21 $ +/* $RCSfile: str.c,v $$Revision: 1.2.6.1 $$Date: 1997/08/08 20:54:50 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: str.c,v $ + * Revision 1.2.6.1 1997/08/08 20:54:50 joerg + * MFC: fix buffer overflow condition. + * * Revision 1.2 1995/05/30 05:03:21 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/perl/str.h b/gnu/usr.bin/perl/perl/str.h index 8e95749e246ac..b318add1afb39 100644 --- a/gnu/usr.bin/perl/perl/str.h +++ b/gnu/usr.bin/perl/perl/str.h @@ -1,4 +1,4 @@ -/* $RCSfile: str.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: str.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:22 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: str.h,v $ + * Revision 1.2 1995/05/30 05:03:22 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/t/TEST b/gnu/usr.bin/perl/perl/t/TEST index 957a868c5cdd4..445ab6c4f74a6 100755 --- a/gnu/usr.bin/perl/perl/t/TEST +++ b/gnu/usr.bin/perl/perl/t/TEST @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: TEST,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: TEST,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:38 $ # This is written in a peculiar style, since we're trying to avoid # most of the constructs we'll be testing for. diff --git a/gnu/usr.bin/perl/perl/t/base/cond.t b/gnu/usr.bin/perl/perl/t/base/cond.t index 7d49f4e9b591d..ec9e3222090f7 100755 --- a/gnu/usr.bin/perl/perl/t/base/cond.t +++ b/gnu/usr.bin/perl/perl/t/base/cond.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/cond.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/cond.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ # make sure conditional operators work diff --git a/gnu/usr.bin/perl/perl/t/base/if.t b/gnu/usr.bin/perl/perl/t/base/if.t index 2a9b82c77e7d2..627324b86304f 100755 --- a/gnu/usr.bin/perl/perl/t/base/if.t +++ b/gnu/usr.bin/perl/perl/t/base/if.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/if.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/if.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/lex.t b/gnu/usr.bin/perl/perl/t/base/lex.t index cd6321d9f0816..a3535cc91bd56 100755 --- a/gnu/usr.bin/perl/perl/t/base/lex.t +++ b/gnu/usr.bin/perl/perl/t/base/lex.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/lex.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/lex.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..18\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/pat.t b/gnu/usr.bin/perl/perl/t/base/pat.t index 2c8d9a9f2b85c..61c0d08fac8aa 100755 --- a/gnu/usr.bin/perl/perl/t/base/pat.t +++ b/gnu/usr.bin/perl/perl/t/base/pat.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/pat.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/pat.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/base/term.t b/gnu/usr.bin/perl/perl/t/base/term.t index c049c5872364d..aaa59baaccad4 100755 --- a/gnu/usr.bin/perl/perl/t/base/term.t +++ b/gnu/usr.bin/perl/perl/t/base/term.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/base/term.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/base/term.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/elsif.t b/gnu/usr.bin/perl/perl/t/cmd/elsif.t index 0e3457f6ad1f5..332a16b41de05 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/elsif.t +++ b/gnu/usr.bin/perl/perl/t/cmd/elsif.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/elsif.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/elsif.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ sub foo { if ($_[0] == 1) { diff --git a/gnu/usr.bin/perl/perl/t/cmd/for.t b/gnu/usr.bin/perl/perl/t/cmd/for.t index 4a0c9226bae87..4a27fc8a97e97 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/for.t +++ b/gnu/usr.bin/perl/perl/t/cmd/for.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/for.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/for.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/mod.t b/gnu/usr.bin/perl/perl/t/cmd/mod.t index eeb44d97b5d83..0b18a348cbbb0 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/mod.t +++ b/gnu/usr.bin/perl/perl/t/cmd/mod.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/mod.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/mod.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/subval.t b/gnu/usr.bin/perl/perl/t/cmd/subval.t index f7f411b34ab13..e7795f931223c 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/subval.t +++ b/gnu/usr.bin/perl/perl/t/cmd/subval.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: subval.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:05 $ +# $RCSfile: subval.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:39 $ sub foo1 { 'true1'; diff --git a/gnu/usr.bin/perl/perl/t/cmd/switch.t b/gnu/usr.bin/perl/perl/t/cmd/switch.t index d0d4c932ad0d9..724d567ca869d 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/switch.t +++ b/gnu/usr.bin/perl/perl/t/cmd/switch.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/switch.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/switch.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..18\n"; diff --git a/gnu/usr.bin/perl/perl/t/cmd/while.t b/gnu/usr.bin/perl/perl/t/cmd/while.t index 006e251a9d2e6..58719f70d14b1 100755 --- a/gnu/usr.bin/perl/perl/t/cmd/while.t +++ b/gnu/usr.bin/perl/perl/t/cmd/while.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/cmd/while.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/cmd/while.t,v 1.1.1.1 1994/09/10 06:27:39 gclarkii Exp $ print "1..10\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/cmdopt.t b/gnu/usr.bin/perl/perl/t/comp/cmdopt.t index 3c47130602ca0..902126a5dceba 100755 --- a/gnu/usr.bin/perl/perl/t/comp/cmdopt.t +++ b/gnu/usr.bin/perl/perl/t/comp/cmdopt.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/cmdopt.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/cmdopt.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..40\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/cpp.t b/gnu/usr.bin/perl/perl/t/comp/cpp.t index 8cceb73ca8a04..656ea25d3918f 100755 --- a/gnu/usr.bin/perl/perl/t/comp/cpp.t +++ b/gnu/usr.bin/perl/perl/t/comp/cpp.t @@ -1,6 +1,6 @@ #!./perl -P -# $RCSfile: cpp.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:06 $ +# $RCSfile: cpp.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:40 $ open(CONFIG,"../config.sh") || die; while (<CONFIG>) { diff --git a/gnu/usr.bin/perl/perl/t/comp/decl.t b/gnu/usr.bin/perl/perl/t/comp/decl.t index f1c84c2190cec..81f921e576af2 100755 --- a/gnu/usr.bin/perl/perl/t/comp/decl.t +++ b/gnu/usr.bin/perl/perl/t/comp/decl.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/decl.t,v 1.1.1.1 1993/08/23 21:30:07 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/decl.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ # check to see if subroutine declarations work everwhere diff --git a/gnu/usr.bin/perl/perl/t/comp/multiline.t b/gnu/usr.bin/perl/perl/t/comp/multiline.t index 78df482d3e7c9..49e43f77308e1 100755 --- a/gnu/usr.bin/perl/perl/t/comp/multiline.t +++ b/gnu/usr.bin/perl/perl/t/comp/multiline.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/multiline.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/multiline.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/script.t b/gnu/usr.bin/perl/perl/t/comp/script.t index 9dcf901958561..820230668ee83 100755 --- a/gnu/usr.bin/perl/perl/t/comp/script.t +++ b/gnu/usr.bin/perl/perl/t/comp/script.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/script.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/script.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/comp/term.t b/gnu/usr.bin/perl/perl/t/comp/term.t index 70b23fd8a6aee..47589f736649f 100755 --- a/gnu/usr.bin/perl/perl/t/comp/term.t +++ b/gnu/usr.bin/perl/perl/t/comp/term.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/comp/term.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/comp/term.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ # tests that aren't important enough for base.term diff --git a/gnu/usr.bin/perl/perl/t/io/argv.t b/gnu/usr.bin/perl/perl/t/io/argv.t index 99c593620eeed..cc1d6d68ec428 100755 --- a/gnu/usr.bin/perl/perl/t/io/argv.t +++ b/gnu/usr.bin/perl/perl/t/io/argv.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/argv.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/argv.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/dup.t b/gnu/usr.bin/perl/perl/t/io/dup.t index 8d11eca79973c..efa2055371089 100755 --- a/gnu/usr.bin/perl/perl/t/io/dup.t +++ b/gnu/usr.bin/perl/perl/t/io/dup.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/dup.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/dup.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/fs.t b/gnu/usr.bin/perl/perl/t/io/fs.t index 1d95cdc3530cc..95f85d5572b31 100755 --- a/gnu/usr.bin/perl/perl/t/io/fs.t +++ b/gnu/usr.bin/perl/perl/t/io/fs.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: fs.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:05 $ +# $RCSfile: fs.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:40 $ print "1..22\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/inplace.t b/gnu/usr.bin/perl/perl/t/io/inplace.t index b22afdaa4b98b..82cc096fdae4b 100755 --- a/gnu/usr.bin/perl/perl/t/io/inplace.t +++ b/gnu/usr.bin/perl/perl/t/io/inplace.t @@ -2,7 +2,7 @@ $^I = '.bak'; -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/inplace.t,v 1.1.1.1 1993/08/23 21:30:05 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/inplace.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/pipe.t b/gnu/usr.bin/perl/perl/t/io/pipe.t index 791a9c715f85e..d52a4b9293268 100755 --- a/gnu/usr.bin/perl/perl/t/io/pipe.t +++ b/gnu/usr.bin/perl/perl/t/io/pipe.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/pipe.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/pipe.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ $| = 1; print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/print.t b/gnu/usr.bin/perl/perl/t/io/print.t index 11854427410b7..38e1dcf827a5e 100755 --- a/gnu/usr.bin/perl/perl/t/io/print.t +++ b/gnu/usr.bin/perl/perl/t/io/print.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/print.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/print.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..16\n"; diff --git a/gnu/usr.bin/perl/perl/t/io/tell.t b/gnu/usr.bin/perl/perl/t/io/tell.t index 27e69a0fd7ee4..669a176ad274d 100755 --- a/gnu/usr.bin/perl/perl/t/io/tell.t +++ b/gnu/usr.bin/perl/perl/t/io/tell.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/io/tell.t,v 1.1.1.1 1993/08/23 21:30:06 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/io/tell.t,v 1.1.1.1 1994/09/10 06:27:40 gclarkii Exp $ print "1..13\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/append.t b/gnu/usr.bin/perl/perl/t/op/append.t index 92c6f48e80c4d..3bf47989ccbe4 100755 --- a/gnu/usr.bin/perl/perl/t/op/append.t +++ b/gnu/usr.bin/perl/perl/t/op/append.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/append.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/append.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/array.t b/gnu/usr.bin/perl/perl/t/op/array.t index 39e05e3fbbb4e..708f8b9f885af 100755 --- a/gnu/usr.bin/perl/perl/t/op/array.t +++ b/gnu/usr.bin/perl/perl/t/op/array.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/array.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/array.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..36\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/auto.t b/gnu/usr.bin/perl/perl/t/op/auto.t index 5301f934d8ed4..4e6f65918bf55 100755 --- a/gnu/usr.bin/perl/perl/t/op/auto.t +++ b/gnu/usr.bin/perl/perl/t/op/auto.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/auto.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/auto.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..34\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/chop.t b/gnu/usr.bin/perl/perl/t/op/chop.t index d691d734105bd..86938fb757baf 100755 --- a/gnu/usr.bin/perl/perl/t/op/chop.t +++ b/gnu/usr.bin/perl/perl/t/op/chop.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/chop.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/chop.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/cond.t b/gnu/usr.bin/perl/perl/t/op/cond.t index 054a5ff7f0d79..d9277387f5001 100755 --- a/gnu/usr.bin/perl/perl/t/op/cond.t +++ b/gnu/usr.bin/perl/perl/t/op/cond.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/cond.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/cond.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/dbm.t b/gnu/usr.bin/perl/perl/t/op/dbm.t index 23d4d98c9412f..f5bd08e15690a 100755 --- a/gnu/usr.bin/perl/perl/t/op/dbm.t +++ b/gnu/usr.bin/perl/perl/t/op/dbm.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: dbm.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: dbm.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:41 $ if (!-r '/usr/include/dbm.h' && !-r '/usr/include/ndbm.h' && !-r '/usr/include/rpcsvc/dbm.h') { diff --git a/gnu/usr.bin/perl/perl/t/op/delete.t b/gnu/usr.bin/perl/perl/t/op/delete.t index e4e1fea106585..4ebeb5e6f2756 100755 --- a/gnu/usr.bin/perl/perl/t/op/delete.t +++ b/gnu/usr.bin/perl/perl/t/op/delete.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/delete.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/delete.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/do.t b/gnu/usr.bin/perl/perl/t/op/do.t index 370012c129b13..247925b0cbdb7 100755 --- a/gnu/usr.bin/perl/perl/t/op/do.t +++ b/gnu/usr.bin/perl/perl/t/op/do.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/do.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/do.t,v 1.1.1.1 1994/09/10 06:27:41 gclarkii Exp $ sub foo1 { diff --git a/gnu/usr.bin/perl/perl/t/op/each.t b/gnu/usr.bin/perl/perl/t/op/each.t index 532d1b01f3f42..578638fd5e37d 100755 --- a/gnu/usr.bin/perl/perl/t/op/each.t +++ b/gnu/usr.bin/perl/perl/t/op/each.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/each.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/each.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/eval.t b/gnu/usr.bin/perl/perl/t/op/eval.t index b21b44d8354c9..bb3bf1297a22b 100755 --- a/gnu/usr.bin/perl/perl/t/op/eval.t +++ b/gnu/usr.bin/perl/perl/t/op/eval.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: eval.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: eval.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:42 $ print "1..16\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/exec.t b/gnu/usr.bin/perl/perl/t/op/exec.t index 69909f7407909..5fb9f43157c7f 100755 --- a/gnu/usr.bin/perl/perl/t/op/exec.t +++ b/gnu/usr.bin/perl/perl/t/op/exec.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/exec.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/exec.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ $| = 1; # flush stdout print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/exp.t b/gnu/usr.bin/perl/perl/t/op/exp.t index 2195e54067d6a..26b1ee671aa6e 100755 --- a/gnu/usr.bin/perl/perl/t/op/exp.t +++ b/gnu/usr.bin/perl/perl/t/op/exp.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/exp.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/exp.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..6\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/flip.t b/gnu/usr.bin/perl/perl/t/op/flip.t index 74ba5085ac5f4..a38a60fbf914c 100755 --- a/gnu/usr.bin/perl/perl/t/op/flip.t +++ b/gnu/usr.bin/perl/perl/t/op/flip.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/flip.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/flip.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/fork.t b/gnu/usr.bin/perl/perl/t/op/fork.t index 10b54a2a2c5b3..0024a33544d0f 100755 --- a/gnu/usr.bin/perl/perl/t/op/fork.t +++ b/gnu/usr.bin/perl/perl/t/op/fork.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/fork.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/fork.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ $| = 1; print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/glob.t b/gnu/usr.bin/perl/perl/t/op/glob.t index 68b0844cad74e..e467249ca4cf9 100755 --- a/gnu/usr.bin/perl/perl/t/op/glob.t +++ b/gnu/usr.bin/perl/perl/t/op/glob.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/glob.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/glob.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/goto.t b/gnu/usr.bin/perl/perl/t/op/goto.t index 44ef343201e44..8bd9ace214bba 100755 --- a/gnu/usr.bin/perl/perl/t/op/goto.t +++ b/gnu/usr.bin/perl/perl/t/op/goto.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: goto.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:03 $ +# $RCSfile: goto.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:42 $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/index.t b/gnu/usr.bin/perl/perl/t/op/index.t index 769314b5e37fe..a663ec36ad331 100755 --- a/gnu/usr.bin/perl/perl/t/op/index.t +++ b/gnu/usr.bin/perl/perl/t/op/index.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/index.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/index.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..20\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/int.t b/gnu/usr.bin/perl/perl/t/op/int.t index 09434b8675a61..1a5a2a023fdb3 100755 --- a/gnu/usr.bin/perl/perl/t/op/int.t +++ b/gnu/usr.bin/perl/perl/t/op/int.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/int.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/int.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/join.t b/gnu/usr.bin/perl/perl/t/op/join.t index a6678e979011a..d79b341a13450 100755 --- a/gnu/usr.bin/perl/perl/t/op/join.t +++ b/gnu/usr.bin/perl/perl/t/op/join.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/join.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/join.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/list.t b/gnu/usr.bin/perl/perl/t/op/list.t index 52b2347bfd309..850709da569c7 100755 --- a/gnu/usr.bin/perl/perl/t/op/list.t +++ b/gnu/usr.bin/perl/perl/t/op/list.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/list.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/list.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..27\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/local.t b/gnu/usr.bin/perl/perl/t/op/local.t index 67396e7cddebe..a962f44533c44 100755 --- a/gnu/usr.bin/perl/perl/t/op/local.t +++ b/gnu/usr.bin/perl/perl/t/op/local.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/local.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/local.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ print "1..20\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/magic.t b/gnu/usr.bin/perl/perl/t/op/magic.t index 1f47a9936ace1..e3ae1045a10a3 100755 --- a/gnu/usr.bin/perl/perl/t/op/magic.t +++ b/gnu/usr.bin/perl/perl/t/op/magic.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/magic.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/magic.t,v 1.1.1.1 1994/09/10 06:27:42 gclarkii Exp $ $| = 1; # command buffering diff --git a/gnu/usr.bin/perl/perl/t/op/mkdir.t b/gnu/usr.bin/perl/perl/t/op/mkdir.t index 0290ed4e5bbc3..17660b378ef6e 100755 --- a/gnu/usr.bin/perl/perl/t/op/mkdir.t +++ b/gnu/usr.bin/perl/perl/t/op/mkdir.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/mkdir.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/mkdir.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..7\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/oct.t b/gnu/usr.bin/perl/perl/t/op/oct.t index 9322cf0e73e10..f26ddbe8d9848 100755 --- a/gnu/usr.bin/perl/perl/t/op/oct.t +++ b/gnu/usr.bin/perl/perl/t/op/oct.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/oct.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/oct.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/ord.t b/gnu/usr.bin/perl/perl/t/op/ord.t index 9d319882d4fe9..e766c85bfbc99 100755 --- a/gnu/usr.bin/perl/perl/t/op/ord.t +++ b/gnu/usr.bin/perl/perl/t/op/ord.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/ord.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/ord.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/pack.t b/gnu/usr.bin/perl/perl/t/op/pack.t index 1dfaddf370efb..90faade78df65 100755 --- a/gnu/usr.bin/perl/perl/t/op/pack.t +++ b/gnu/usr.bin/perl/perl/t/op/pack.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/pack.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/pack.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/pat.t b/gnu/usr.bin/perl/perl/t/op/pat.t index ce9f35c6ee668..c6d6a50f86324 100755 --- a/gnu/usr.bin/perl/perl/t/op/pat.t +++ b/gnu/usr.bin/perl/perl/t/op/pat.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: pat.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: pat.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:43 $ print "1..51\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/push.t b/gnu/usr.bin/perl/perl/t/op/push.t index 3d738acfbda31..105f07f1b9453 100755 --- a/gnu/usr.bin/perl/perl/t/op/push.t +++ b/gnu/usr.bin/perl/perl/t/op/push.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/push.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/push.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ @tests = split(/\n/, <<EOF); 0 3, 0 1 2, 3 4 5 6 7 diff --git a/gnu/usr.bin/perl/perl/t/op/range.t b/gnu/usr.bin/perl/perl/t/op/range.t index 6214f9527b994..e40e436df130f 100755 --- a/gnu/usr.bin/perl/perl/t/op/range.t +++ b/gnu/usr.bin/perl/perl/t/op/range.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/range.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/range.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..8\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/read.t b/gnu/usr.bin/perl/perl/t/op/read.t index 4151e5c6a6746..471a2a85a46c8 100755 --- a/gnu/usr.bin/perl/perl/t/op/read.t +++ b/gnu/usr.bin/perl/perl/t/op/read.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/read.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/read.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..4\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/regexp.t b/gnu/usr.bin/perl/perl/t/op/regexp.t index 58f6666e6949d..3b5ea3521d63e 100755 --- a/gnu/usr.bin/perl/perl/t/op/regexp.t +++ b/gnu/usr.bin/perl/perl/t/op/regexp.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: regexp.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:03 $ +# $RCSfile: regexp.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:43 $ open(TESTS,'op/re_tests') || open(TESTS,'t/op/re_tests') || die "Can't open re_tests"; diff --git a/gnu/usr.bin/perl/perl/t/op/repeat.t b/gnu/usr.bin/perl/perl/t/op/repeat.t index 68c61fc6a05e2..c06aa00b71c1e 100755 --- a/gnu/usr.bin/perl/perl/t/op/repeat.t +++ b/gnu/usr.bin/perl/perl/t/op/repeat.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/repeat.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/repeat.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..19\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/s.t b/gnu/usr.bin/perl/perl/t/op/s.t index 59300209cd39c..3a8a3ded864de 100755 --- a/gnu/usr.bin/perl/perl/t/op/s.t +++ b/gnu/usr.bin/perl/perl/t/op/s.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/s.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/s.t,v 1.1.1.1 1994/09/10 06:27:43 gclarkii Exp $ print "1..51\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sleep.t b/gnu/usr.bin/perl/perl/t/op/sleep.t index 81113712d3435..5ae30739672c4 100755 --- a/gnu/usr.bin/perl/perl/t/op/sleep.t +++ b/gnu/usr.bin/perl/perl/t/op/sleep.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/sleep.t,v 1.1.1.1 1993/08/23 21:30:04 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/sleep.t,v 1.1.1.1 1994/09/10 06:27:45 gclarkii Exp $ print "1..1\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sort.t b/gnu/usr.bin/perl/perl/t/op/sort.t index 4692ee4422fb0..10a7e375ee16f 100755 --- a/gnu/usr.bin/perl/perl/t/op/sort.t +++ b/gnu/usr.bin/perl/perl/t/op/sort.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: sort.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:02 $ +# $RCSfile: sort.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:46 $ print "1..10\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/split.t b/gnu/usr.bin/perl/perl/t/op/split.t index 63bf3c7c76da8..89834b39aef94 100755 --- a/gnu/usr.bin/perl/perl/t/op/split.t +++ b/gnu/usr.bin/perl/perl/t/op/split.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/split.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/split.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..12\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/sprintf.t b/gnu/usr.bin/perl/perl/t/op/sprintf.t index cdb4af5a2244e..d2760227f0ec9 100755 --- a/gnu/usr.bin/perl/perl/t/op/sprintf.t +++ b/gnu/usr.bin/perl/perl/t/op/sprintf.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/sprintf.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/sprintf.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..1\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/stat.t b/gnu/usr.bin/perl/perl/t/op/stat.t index a5db14fd124ed..2cfff01709508 100755 --- a/gnu/usr.bin/perl/perl/t/op/stat.t +++ b/gnu/usr.bin/perl/perl/t/op/stat.t @@ -1,6 +1,6 @@ #!./perl -# $RCSfile: stat.t,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:01 $ +# $RCSfile: stat.t,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:46 $ print "1..56\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/study.t b/gnu/usr.bin/perl/perl/t/op/study.t index a0fdc4cd273c7..7f7ba3576e734 100755 --- a/gnu/usr.bin/perl/perl/t/op/study.t +++ b/gnu/usr.bin/perl/perl/t/op/study.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/study.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/study.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..24\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/substr.t b/gnu/usr.bin/perl/perl/t/op/substr.t index 09f312f837628..1de2da75ba852 100755 --- a/gnu/usr.bin/perl/perl/t/op/substr.t +++ b/gnu/usr.bin/perl/perl/t/op/substr.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/substr.t,v 1.1.1.1 1993/08/23 21:30:01 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/substr.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..22\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/time.t b/gnu/usr.bin/perl/perl/t/op/time.t index f8e5545f7b418..e48de9057baa5 100755 --- a/gnu/usr.bin/perl/perl/t/op/time.t +++ b/gnu/usr.bin/perl/perl/t/op/time.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/time.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/time.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..5\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/undef.t b/gnu/usr.bin/perl/perl/t/op/undef.t index b4827db0c5475..0d263090a380a 100755 --- a/gnu/usr.bin/perl/perl/t/op/undef.t +++ b/gnu/usr.bin/perl/perl/t/op/undef.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/undef.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/undef.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..21\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/unshift.t b/gnu/usr.bin/perl/perl/t/op/unshift.t index 53d73883822bf..fcdf9e8070ae0 100755 --- a/gnu/usr.bin/perl/perl/t/op/unshift.t +++ b/gnu/usr.bin/perl/perl/t/op/unshift.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/unshift.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/unshift.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..2\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/vec.t b/gnu/usr.bin/perl/perl/t/op/vec.t index 51344769b6cfb..94113edd66ce3 100755 --- a/gnu/usr.bin/perl/perl/t/op/vec.t +++ b/gnu/usr.bin/perl/perl/t/op/vec.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/vec.t,v 1.1.1.1 1993/08/23 21:30:03 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/vec.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..13\n"; diff --git a/gnu/usr.bin/perl/perl/t/op/write.t b/gnu/usr.bin/perl/perl/t/op/write.t index d17f1951bb760..f1b7fdd0d8624 100755 --- a/gnu/usr.bin/perl/perl/t/op/write.t +++ b/gnu/usr.bin/perl/perl/t/op/write.t @@ -1,6 +1,6 @@ #!./perl -# $Header: /home/cvs/386BSD/ports/lang/perl/t/op/write.t,v 1.1.1.1 1993/08/23 21:30:02 nate Exp $ +# $Header: /home/ncvs/src/gnu/usr.bin/perl/perl/t/op/write.t,v 1.1.1.1 1994/09/10 06:27:46 gclarkii Exp $ print "1..3\n"; diff --git a/gnu/usr.bin/perl/perl/tdoio.c b/gnu/usr.bin/perl/perl/tdoio.c index 1cd6269e8c70a..d2d58e16d271d 100644 --- a/gnu/usr.bin/perl/perl/tdoio.c +++ b/gnu/usr.bin/perl/perl/tdoio.c @@ -1,4 +1,4 @@ -/* $RCSfile: tdoio.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:36 $ +/* $RCSfile: tdoio.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:23 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: tdoio.c,v $ + * Revision 1.2 1995/05/30 05:03:23 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:36 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/toke.c b/gnu/usr.bin/perl/perl/toke.c index 6c7be969c4fe9..0e9334fd4c909 100644 --- a/gnu/usr.bin/perl/perl/toke.c +++ b/gnu/usr.bin/perl/perl/toke.c @@ -1,4 +1,4 @@ -/* $RCSfile: toke.c,v $$Revision: 1.2.6.1 $$Date: 1997/08/08 20:54:51 $ +/* $RCSfile: toke.c,v $$Revision: 1.2.6.2 $$Date: 1997/08/27 17:19:19 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: toke.c,v $ + * Revision 1.2.6.2 1997/08/27 17:19:19 joerg + * MFC: rev 1.4, pass all args down to scanident() + * * Revision 1.2.6.1 1997/08/08 20:54:51 joerg * MFC: fix buffer overflow condition. * diff --git a/gnu/usr.bin/perl/perl/usersub.c b/gnu/usr.bin/perl/perl/usersub.c index 8c7cb65c47f6f..f49eda39b9704 100644 --- a/gnu/usr.bin/perl/perl/usersub.c +++ b/gnu/usr.bin/perl/perl/usersub.c @@ -1,10 +1,13 @@ -/* $RCSfile: usersub.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:34 $ +/* $RCSfile: usersub.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:27 $ * * This file contains stubs for routines that the user may define to * set up glue routines for C libraries or to decrypt encrypted scripts * for execution. * * $Log: usersub.c,v $ + * Revision 1.2 1995/05/30 05:03:27 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:34 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/perl/util.c b/gnu/usr.bin/perl/perl/util.c index ded365a83a136..25c825d202ff8 100644 --- a/gnu/usr.bin/perl/perl/util.c +++ b/gnu/usr.bin/perl/perl/util.c @@ -1,4 +1,4 @@ -/* $RCSfile: util.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:28 $ +/* $RCSfile: util.c,v $$Revision: 1.2.6.1 $$Date: 1997/09/16 08:34:32 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.c,v $ + * Revision 1.2.6.1 1997/09/16 08:34:32 joerg + * MFC: buffer overflow fix from rev 1.3. + * * Revision 1.2 1995/05/30 05:03:28 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/perl/util.h b/gnu/usr.bin/perl/perl/util.h index 003e443860104..b3c1db512881e 100644 --- a/gnu/usr.bin/perl/perl/util.h +++ b/gnu/usr.bin/perl/perl/util.h @@ -1,4 +1,4 @@ -/* $RCSfile: util.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:35 $ +/* $RCSfile: util.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:29 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.h,v $ + * Revision 1.2 1995/05/30 05:03:29 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:35 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/usub/curses.mus b/gnu/usr.bin/perl/usub/curses.mus index 03269c3415e93..898f7376abd25 100644 --- a/gnu/usr.bin/perl/usub/curses.mus +++ b/gnu/usr.bin/perl/usub/curses.mus @@ -1,6 +1,9 @@ -/* $RCSfile: curses.mus,v $$Revision: 1.1 $$Date: 1995/03/24 04:33:49 $ +/* $RCSfile: curses.mus,v $$Revision: 1.2 $$Date: 1995/04/02 13:11:14 $ * * $Log: curses.mus,v $ + * Revision 1.2 1995/04/02 13:11:14 bde + * Fix compiler warnings: don't declare enum types as static. + * # Revision 1.1 1995/03/24 04:33:49 jkh # Bring back perl/usub as usub/, this time containing an updated curseperl # which is also installed by default (the reason for which should also be diff --git a/gnu/usr.bin/perl/usub/usersub.c b/gnu/usr.bin/perl/usub/usersub.c index 26fbcbccf62ef..786ad2721a975 100644 --- a/gnu/usr.bin/perl/usub/usersub.c +++ b/gnu/usr.bin/perl/usub/usersub.c @@ -1,6 +1,9 @@ -/* $RCSfile: usersub.c,v $$Revision: 1.1 $$Date: 1995/03/24 04:33:54 $ +/* $RCSfile: usersub.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:33 $ * * $Log: usersub.c,v $ + * Revision 1.2 1995/05/30 05:03:33 rgrimes + * Remove trailing whitespace. + * * Revision 1.1 1995/03/24 04:33:54 jkh * Bring back perl/usub as usub/, this time containing an updated curseperl * which is also installed by default (the reason for which should also be diff --git a/gnu/usr.bin/perl/x2p/EXTERN.h b/gnu/usr.bin/perl/x2p/EXTERN.h index b0bb6d0162fb7..cbc5ca6543df5 100644 --- a/gnu/usr.bin/perl/x2p/EXTERN.h +++ b/gnu/usr.bin/perl/x2p/EXTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: EXTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: EXTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:35 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: EXTERN.h,v $ + * Revision 1.2 1995/05/30 05:03:35 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/INTERN.h b/gnu/usr.bin/perl/x2p/INTERN.h index d8a8a3e2a349a..38ee58f87c943 100644 --- a/gnu/usr.bin/perl/x2p/INTERN.h +++ b/gnu/usr.bin/perl/x2p/INTERN.h @@ -1,4 +1,4 @@ -/* $RCSfile: INTERN.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: INTERN.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:36 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: INTERN.h,v $ + * Revision 1.2 1995/05/30 05:03:36 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/a2p.1 b/gnu/usr.bin/perl/x2p/a2p.1 index 58d8c077fafdc..45cf80b88a92a 100644 --- a/gnu/usr.bin/perl/x2p/a2p.1 +++ b/gnu/usr.bin/perl/x2p/a2p.1 @@ -1,7 +1,11 @@ .rn '' }` -''' $Header: /home/cvs/386BSD/ports/lang/perl/x2p/a2p.man,v 1.1.1.1 1993/08/23 21:30:10 nate Exp $ +''' $Header: /home/ncvs/src/gnu/usr.bin/perl/x2p/a2p.1,v 1.1.1.1 1994/09/10 06:27:55 gclarkii Exp $ ''' -''' $Log: a2p.man,v $ +''' $Log: a2p.1,v $ +''' Revision 1.1.1.1 1994/09/10 06:27:55 gclarkii +''' Initial import of Perl 4.046 bmaked +''' +''' .\" Revision 1.1.1.1 1993/08/23 21:30:10 nate .\" PERL! .\" diff --git a/gnu/usr.bin/perl/x2p/a2p.h b/gnu/usr.bin/perl/x2p/a2p.h index cc59fb7ddf8ed..02ce43557b55e 100644 --- a/gnu/usr.bin/perl/x2p/a2p.h +++ b/gnu/usr.bin/perl/x2p/a2p.h @@ -1,4 +1,4 @@ -/* $RCSfile: a2p.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ +/* $RCSfile: a2p.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:37 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: a2p.h,v $ + * Revision 1.2 1995/05/30 05:03:37 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/a2p.y b/gnu/usr.bin/perl/x2p/a2p.y index bc86632dd417b..bf15c50be9ef3 100644 --- a/gnu/usr.bin/perl/x2p/a2p.y +++ b/gnu/usr.bin/perl/x2p/a2p.y @@ -1,5 +1,5 @@ %{ -/* $RCSfile: a2p.y,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:09 $ +/* $RCSfile: a2p.y,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ * * Copyright (c) 1991, Larry Wall * @@ -7,6 +7,10 @@ * License or the Artistic License, as specified in the README file. * * $Log: a2p.y,v $ + * Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii + * Initial import of Perl 4.046 bmaked + * + * * Revision 1.1.1.1 1993/08/23 21:30:09 nate * PERL! * diff --git a/gnu/usr.bin/perl/x2p/a2py.c b/gnu/usr.bin/perl/x2p/a2py.c index fcc196b640f22..1a873591a85d3 100644 --- a/gnu/usr.bin/perl/x2p/a2py.c +++ b/gnu/usr.bin/perl/x2p/a2py.c @@ -1,4 +1,4 @@ -/* $RCSfile: a2py.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ +/* $RCSfile: a2py.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:38 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: a2py.c,v $ + * Revision 1.2 1995/05/30 05:03:38 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/handy.h b/gnu/usr.bin/perl/x2p/handy.h index 1db94d4bfae27..b732e5e8ddc25 100644 --- a/gnu/usr.bin/perl/x2p/handy.h +++ b/gnu/usr.bin/perl/x2p/handy.h @@ -1,4 +1,4 @@ -/* $RCSfile: handy.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: handy.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:40 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: handy.h,v $ + * Revision 1.2 1995/05/30 05:03:40 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/hash.c b/gnu/usr.bin/perl/x2p/hash.c index d1ae8ac44a560..fe1dee0444d9e 100644 --- a/gnu/usr.bin/perl/x2p/hash.c +++ b/gnu/usr.bin/perl/x2p/hash.c @@ -1,4 +1,4 @@ -/* $RCSfile: hash.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: hash.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:40 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: hash.c,v $ + * Revision 1.2 1995/05/30 05:03:40 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/hash.h b/gnu/usr.bin/perl/x2p/hash.h index 452321cd557c3..ec91d4bfb4b94 100644 --- a/gnu/usr.bin/perl/x2p/hash.h +++ b/gnu/usr.bin/perl/x2p/hash.h @@ -1,4 +1,4 @@ -/* $RCSfile: hash.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: hash.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:42 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: hash.h,v $ + * Revision 1.2 1995/05/30 05:03:42 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/malloc.c b/gnu/usr.bin/perl/x2p/malloc.c index e7fff7f25c0f1..f57169d2570bf 100644 --- a/gnu/usr.bin/perl/x2p/malloc.c +++ b/gnu/usr.bin/perl/x2p/malloc.c @@ -1,6 +1,9 @@ -/* $RCSfile: malloc.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: malloc.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:43 $ * * $Log: malloc.c,v $ + * Revision 1.2 1995/05/30 05:03:43 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/s2p b/gnu/usr.bin/perl/x2p/s2p index c110e5ef5720e..1af6834c7c424 100755 --- a/gnu/usr.bin/perl/x2p/s2p +++ b/gnu/usr.bin/perl/x2p/s2p @@ -5,9 +5,20 @@ eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' $bin = '/usr/bin'; -# $RCSfile: s2p,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +# $RCSfile: s2p,v $$Revision: 1.2 $$Date: 1994/10/29 07:14:55 $ # # $Log: s2p,v $ +# Revision 1.2 1994/10/29 07:14:55 pst +# Test test test! sigh! +# +# Perl's scripts are still trying to execute perl out of /usr/gnu/bin/perl. +# +# The hack Larry was using for h2ph.1 doesn't work with the new macros, so +# make it a real man page. +# +# Also, we weren't building the .ph files, add them as an afterinstall rule +# in the x2p subdirectory. +# # Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii # Initial import of Perl 4.046 bmaked # diff --git a/gnu/usr.bin/perl/x2p/s2p.1 b/gnu/usr.bin/perl/x2p/s2p.1 index ab74717833fc2..f9994e3d434ce 100644 --- a/gnu/usr.bin/perl/x2p/s2p.1 +++ b/gnu/usr.bin/perl/x2p/s2p.1 @@ -1,7 +1,11 @@ .rn '' }` -''' $RCSfile: s2p.man,v $$Revision: 1.1.1.1 $$Date: 1993/08/23 21:30:10 $ +''' $RCSfile: s2p.1,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:53 $ ''' -''' $Log: s2p.man,v $ +''' $Log: s2p.1,v $ +''' Revision 1.1.1.1 1994/09/10 06:27:53 gclarkii +''' Initial import of Perl 4.046 bmaked +''' +''' .\" Revision 1.1.1.1 1993/08/23 21:30:10 nate .\" PERL! .\" diff --git a/gnu/usr.bin/perl/x2p/str.c b/gnu/usr.bin/perl/x2p/str.c index 4e078a6600fe3..f30ca028dea1a 100644 --- a/gnu/usr.bin/perl/x2p/str.c +++ b/gnu/usr.bin/perl/x2p/str.c @@ -1,4 +1,4 @@ -/* $RCSfile: str.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:54 $ +/* $RCSfile: str.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:44 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: str.c,v $ + * Revision 1.2 1995/05/30 05:03:44 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:54 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/str.h b/gnu/usr.bin/perl/x2p/str.h index 642e18e664008..052677e7074ea 100644 --- a/gnu/usr.bin/perl/x2p/str.h +++ b/gnu/usr.bin/perl/x2p/str.h @@ -1,4 +1,4 @@ -/* $RCSfile: str.h,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: str.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:45 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: str.h,v $ + * Revision 1.2 1995/05/30 05:03:45 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:55 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/util.c b/gnu/usr.bin/perl/x2p/util.c index 70a6cd7a647ff..2ef137bf7dc81 100644 --- a/gnu/usr.bin/perl/x2p/util.c +++ b/gnu/usr.bin/perl/x2p/util.c @@ -1,4 +1,4 @@ -/* $RCSfile: util.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: util.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:45 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.c,v $ + * Revision 1.2 1995/05/30 05:03:45 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:55 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/perl/x2p/util.h b/gnu/usr.bin/perl/x2p/util.h index 17a689a33bf26..722bbdbd35fcb 100644 --- a/gnu/usr.bin/perl/x2p/util.h +++ b/gnu/usr.bin/perl/x2p/util.h @@ -1,4 +1,4 @@ -/* $RCSfile: util.h,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:46 $ +/* $RCSfile: util.h,v $$Revision: 1.2.6.1 $$Date: 1997/02/23 11:46:32 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.h,v $ + * Revision 1.2.6.1 1997/02/23 11:46:32 joerg + * YAMFC (rev 1.3: remove bogus redeclaration of getenv()) + * * Revision 1.2 1995/05/30 05:03:46 rgrimes * Remove trailing whitespace. * diff --git a/gnu/usr.bin/perl/x2p/walk.c b/gnu/usr.bin/perl/x2p/walk.c index c7e5e4445bf57..d1ac02e19727c 100644 --- a/gnu/usr.bin/perl/x2p/walk.c +++ b/gnu/usr.bin/perl/x2p/walk.c @@ -1,4 +1,4 @@ -/* $RCSfile: walk.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:55 $ +/* $RCSfile: walk.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:47 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: walk.c,v $ + * Revision 1.2 1995/05/30 05:03:47 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:55 gclarkii * Initial import of Perl 4.046 bmaked * diff --git a/gnu/usr.bin/rcs/CREDITS b/gnu/usr.bin/rcs/CREDITS index 6eca1b9c68bb2..8675fb3bac8b8 100644 --- a/gnu/usr.bin/rcs/CREDITS +++ b/gnu/usr.bin/rcs/CREDITS @@ -21,4 +21,4 @@ Brendan Kehoe of Cygnus Support suggested rlog's -N option. Paul D. Smith of Data General suggested improvements in option and error processing. Adam Hammer of Purdue QAed. -$Id: CREDITS,v 1.1 1993/11/03 17:50:39 eggert Exp $ +$Id: CREDITS,v 1.2 1995/10/28 21:48:56 peter Exp $ diff --git a/gnu/usr.bin/rcs/NEWS b/gnu/usr.bin/rcs/NEWS index 62b7c2b0b814d..d7d08212c14fa 100644 --- a/gnu/usr.bin/rcs/NEWS +++ b/gnu/usr.bin/rcs/NEWS @@ -1,6 +1,6 @@ Recent changes to RCS (and possible future changes) - $Id: NEWS,v 1.5 1995/06/16 06:19:24 eggert Exp $ + $Id: NEWS,v 1.2 1995/10/28 21:48:59 peter Exp $ Copyright 1991, 1992, 1993, 1994, 1995 Paul Eggert Distributed under license by the Free Software Foundation, Inc. diff --git a/gnu/usr.bin/rcs/REFS b/gnu/usr.bin/rcs/REFS index eaf96a5a1f2bf..dc33becec8f8d 100644 --- a/gnu/usr.bin/rcs/REFS +++ b/gnu/usr.bin/rcs/REFS @@ -2,7 +2,7 @@ Here are references to RCS and related free software and documentation. Some of this information changes often; see the Frequently Asked Questions for more up-to-date references. - $Id: REFS,v 1.1 1995/06/16 06:19:24 eggert Exp $ + $Id: REFS,v 1.2 1995/10/28 21:49:02 peter Exp $ Frequently Asked Questions (FAQs) diff --git a/gnu/usr.bin/rcs/ci/ci.1 b/gnu/usr.bin/rcs/ci/ci.1 index b11cf8d68b4e7..bb04f11f16ac8 100644 --- a/gnu/usr.bin/rcs/ci/ci.1 +++ b/gnu/usr.bin/rcs/ci/ci.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: ci.1,v 1.2 1995/10/28 21:49:06 peter Exp $ +.Id $Id: ci.1,v 1.3 1996/02/12 04:56:44 mpp Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/ci/ci.c b/gnu/usr.bin/rcs/ci/ci.c index 701b15cde1d03..0556566d6e655 100644 --- a/gnu/usr.bin/rcs/ci/ci.c +++ b/gnu/usr.bin/rcs/ci/ci.c @@ -274,7 +274,7 @@ static struct hshentry newdelta; /* new delta to be inserted */ static struct stat workstat; static struct Symrev *assoclst, **nextassoc; -mainProg(ciId, "ci", "$Id: ci.c,v 1.3 1995/10/28 21:49:08 peter Exp $") +mainProg(ciId, "ci", "$Id: ci.c,v 1.4 1995/10/29 22:05:59 peter Exp $") { static char const cmdusage[] = "\nci usage: ci -{fIklMqru}[rev] -d[date] -mmsg -{nN}name -sstate -ttext -T -Vn -wwho -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/co/co.1 b/gnu/usr.bin/rcs/co/co.1 index 8d0a6e70d5e8f..82b1aad778ec6 100644 --- a/gnu/usr.bin/rcs/co/co.1 +++ b/gnu/usr.bin/rcs/co/co.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: co.1,v 5.13 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: co.1,v 1.3 1995/10/28 21:49:11 peter Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/co/co.c b/gnu/usr.bin/rcs/co/co.c index 9dbe8f360c903..b588572cec239 100644 --- a/gnu/usr.bin/rcs/co/co.c +++ b/gnu/usr.bin/rcs/co/co.c @@ -191,7 +191,7 @@ 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.6 1995/10/29 22:06:03 peter Exp $") +mainProg(coId, "co", "$Id: co.c,v 1.6.2.1 1997/08/22 07:01:29 peter Exp $") { static char const cmdusage[] = "\nco usage: co -{fIlMpqru}[rev] -ddate -jjoins -ksubst -sstate -T -w[who] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/doc/rcs.ms b/gnu/usr.bin/rcs/doc/rcs.ms index 1c908100c5c0b..856a6fc3fee8f 100644 --- a/gnu/usr.bin/rcs/doc/rcs.ms +++ b/gnu/usr.bin/rcs/doc/rcs.ms @@ -18,7 +18,7 @@ .de Id .ND \\$4 .. -.Id $Id: rcs.ms,v 5.4 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: rcs.ms,v 1.2 1995/10/28 21:49:15 peter Exp $ .RP .TL RCS\*-A System for Version Control diff --git a/gnu/usr.bin/rcs/ident/ident.1 b/gnu/usr.bin/rcs/ident/ident.1 index 33c10eb8126dc..99fdc356c1c0b 100644 --- a/gnu/usr.bin/rcs/ident/ident.1 +++ b/gnu/usr.bin/rcs/ident/ident.1 @@ -3,7 +3,7 @@ .ds Dt \\$4 .ds iD \\$3 \\$4 \\$5 \\$6 \\$7 .. -.Id $Id: ident.1,v 5.4 1993/11/09 17:40:15 eggert Exp $ +.Id $Id: ident.1,v 1.2 1995/10/28 21:49:18 peter Exp $ .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 .if n .ds - \%-- diff --git a/gnu/usr.bin/rcs/ident/ident.c b/gnu/usr.bin/rcs/ident/ident.c index 2d50e7727ec29..3d2f0a169d31b 100644 --- a/gnu/usr.bin/rcs/ident/ident.c +++ b/gnu/usr.bin/rcs/ident/ident.c @@ -102,7 +102,7 @@ static int match P((FILE*)); static int scanfile P((FILE*,char const*,int)); static void reportError P((char const*)); -mainProg(identId, "ident", "$Id: ident.c,v 1.3 1995/10/28 21:49:19 peter Exp $") +mainProg(identId, "ident", "$Id: ident.c,v 1.4 1995/10/29 22:06:07 peter Exp $") /* Ident searches the named files for all occurrences * of the pattern $@: text $ where @ is a keyword. */ diff --git a/gnu/usr.bin/rcs/lib/conf.h b/gnu/usr.bin/rcs/lib/conf.h index b1d404a9ea680..1a7cf76e82f75 100644 --- a/gnu/usr.bin/rcs/lib/conf.h +++ b/gnu/usr.bin/rcs/lib/conf.h @@ -1,6 +1,6 @@ /* RCS compile-time configuration */ - /* $Id: conf.h,v 1.4 1995/10/28 21:49:25 peter Exp $ */ + /* $Id: conf.h,v 1.5 1995/10/29 08:35:51 peter Exp $ */ /* * This file is generated automatically. diff --git a/gnu/usr.bin/rcs/lib/maketime.c b/gnu/usr.bin/rcs/lib/maketime.c index 0f98926043714..f657179ca6033 100644 --- a/gnu/usr.bin/rcs/lib/maketime.c +++ b/gnu/usr.bin/rcs/lib/maketime.c @@ -43,7 +43,7 @@ Report problems and direct all questions to: #include "maketime.h" char const maketId[] - = "$Id: maketime.c,v 1.3 1995/10/28 21:49:29 peter Exp $"; + = "$Id: maketime.c,v 1.4 1995/12/01 08:26:33 jkh Exp $"; static int isleap P((int)); static int month_days P((struct tm const*)); diff --git a/gnu/usr.bin/rcs/lib/merger.c b/gnu/usr.bin/rcs/lib/merger.c index fd36d26ae31e1..7408f7ad0ea78 100644 --- a/gnu/usr.bin/rcs/lib/merger.c +++ b/gnu/usr.bin/rcs/lib/merger.c @@ -28,7 +28,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(mergerId, "$Id: merger.c,v 1.7 1995/06/16 06:19:24 eggert Exp $") +libId(mergerId, "$Id: merger.c,v 1.2 1995/10/28 21:49:31 peter Exp $") static char const *normalize_arg P((char const*,char**)); static char const * diff --git a/gnu/usr.bin/rcs/lib/partime.c b/gnu/usr.bin/rcs/lib/partime.c index 4246566d766ba..d19f0813ffe8c 100644 --- a/gnu/usr.bin/rcs/lib/partime.c +++ b/gnu/usr.bin/rcs/lib/partime.c @@ -46,7 +46,7 @@ Report problems and direct all questions to: #include "partime.h" char const partimeId[] - = "$Id: partime.c,v 5.13 1995/06/16 06:19:24 eggert Exp $"; + = "$Id: partime.c,v 1.3 1995/10/28 21:49:33 peter Exp $"; /* Lookup tables for names of months, weekdays, time zones. */ diff --git a/gnu/usr.bin/rcs/lib/rcsbase.h b/gnu/usr.bin/rcs/lib/rcsbase.h index 6d94799456cac..b7bf8ec9152b1 100644 --- a/gnu/usr.bin/rcs/lib/rcsbase.h +++ b/gnu/usr.bin/rcs/lib/rcsbase.h @@ -1,6 +1,6 @@ /* RCS common definitions and data structures */ -#define RCSBASE "$Id: rcsbase.h,v 1.6 1995/10/29 22:06:10 peter Exp $" +#define RCSBASE "$Id: rcsbase.h,v 1.6.2.1 1997/08/22 07:01:34 peter Exp $" /* Copyright 1982, 1988, 1989 Walter Tichy Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/lib/rcsedit.c b/gnu/usr.bin/rcs/lib/rcsedit.c index be7e799c0fc41..eb6ecf7c70663 100644 --- a/gnu/usr.bin/rcs/lib/rcsedit.c +++ b/gnu/usr.bin/rcs/lib/rcsedit.c @@ -201,7 +201,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(editId, "$Id: rcsedit.c,v 1.6 1995/10/29 22:06:12 peter Exp $") +libId(editId, "$Id: rcsedit.c,v 1.6.2.1 1997/08/22 07:01:39 peter Exp $") static void editEndsPrematurely P((void)) exiting; static void editLineNumberOverflow P((void)) exiting; diff --git a/gnu/usr.bin/rcs/lib/rcsfcmp.c b/gnu/usr.bin/rcs/lib/rcsfcmp.c index c9cef573bf162..0ee18a1586aa0 100644 --- a/gnu/usr.bin/rcs/lib/rcsfcmp.c +++ b/gnu/usr.bin/rcs/lib/rcsfcmp.c @@ -118,7 +118,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(fcmpId, "$Id: rcsfcmp.c,v 1.3 1995/10/28 21:49:38 peter Exp $") +libId(fcmpId, "$Id: rcsfcmp.c,v 1.4 1995/10/29 22:06:15 peter Exp $") static int discardkeyval P((int,RILE*)); static int diff --git a/gnu/usr.bin/rcs/lib/rcsfnms.c b/gnu/usr.bin/rcs/lib/rcsfnms.c index 1c0426edc8fde..fdc7435b20562 100644 --- a/gnu/usr.bin/rcs/lib/rcsfnms.c +++ b/gnu/usr.bin/rcs/lib/rcsfnms.c @@ -177,7 +177,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(fnmsId, "$Id: rcsfnms.c,v 1.4.2.1 1997/08/19 11:24:17 peter Exp $") +libId(fnmsId, "$Id: rcsfnms.c,v 1.4.2.2 1997/08/22 07:01:42 peter Exp $") static char const *bindex P((char const*,int)); static int fin2open P((char const*, size_t, char const*, size_t, char const*, size_t, RILE*(*)P((struct buf*,struct stat*,int)), int)); diff --git a/gnu/usr.bin/rcs/lib/rcsgen.c b/gnu/usr.bin/rcs/lib/rcsgen.c index 0c8e5c0e4d032..13270aa55a389 100644 --- a/gnu/usr.bin/rcs/lib/rcsgen.c +++ b/gnu/usr.bin/rcs/lib/rcsgen.c @@ -140,7 +140,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(genId, "$Id: rcsgen.c,v 1.3 1995/10/28 21:49:41 peter Exp $") +libId(genId, "$Id: rcsgen.c,v 1.4 1995/10/29 22:06:21 peter Exp $") int interactiveflag; /* Should we act as if stdin is a tty? */ struct buf curlogbuf; /* buffer for current log message */ diff --git a/gnu/usr.bin/rcs/lib/rcskeep.c b/gnu/usr.bin/rcs/lib/rcskeep.c index e759e8dc8c99b..a61fbf4b9ccdd 100644 --- a/gnu/usr.bin/rcs/lib/rcskeep.c +++ b/gnu/usr.bin/rcs/lib/rcskeep.c @@ -98,7 +98,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(keepId, "$Id: rcskeep.c,v 1.4 1995/10/29 22:06:23 peter Exp $") +libId(keepId, "$Id: rcskeep.c,v 1.4.2.1 1997/08/22 07:01:44 peter Exp $") static int badly_terminated P((void)); static int checknum P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcskeys.c b/gnu/usr.bin/rcs/lib/rcskeys.c index 8ca3b5bb22364..6a36649c4efd7 100644 --- a/gnu/usr.bin/rcs/lib/rcskeys.c +++ b/gnu/usr.bin/rcs/lib/rcskeys.c @@ -63,7 +63,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(keysId, "$Id: rcskeys.c,v 1.8 1995/10/29 22:06:24 peter Exp $") +libId(keysId, "$Id: rcskeys.c,v 1.8.2.1 1997/08/22 07:01:45 peter Exp $") char const *Keyword[] = { diff --git a/gnu/usr.bin/rcs/lib/rcslex.c b/gnu/usr.bin/rcs/lib/rcslex.c index 9929dc4f0f924..b3b7f49dacd0f 100644 --- a/gnu/usr.bin/rcs/lib/rcslex.c +++ b/gnu/usr.bin/rcs/lib/rcslex.c @@ -168,7 +168,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(lexId, "$Id: rcslex.c,v 1.4 1995/10/28 21:49:46 peter Exp $") +libId(lexId, "$Id: rcslex.c,v 1.5 1995/10/29 22:06:26 peter Exp $") static char *checkidentifier P((char*,int,int)); static void errsay P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcsmap.c b/gnu/usr.bin/rcs/lib/rcsmap.c index 0345ef82f24d0..2eba929ae6e4d 100644 --- a/gnu/usr.bin/rcs/lib/rcsmap.c +++ b/gnu/usr.bin/rcs/lib/rcsmap.c @@ -29,7 +29,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(mapId, "$Id: rcsmap.c,v 5.3 1995/06/16 06:19:24 eggert Exp $") +libId(mapId, "$Id: rcsmap.c,v 1.2 1995/10/28 21:49:48 peter Exp $") /* map of character types */ /* ISO 8859/1 (Latin-1) */ diff --git a/gnu/usr.bin/rcs/lib/rcsrev.c b/gnu/usr.bin/rcs/lib/rcsrev.c index c0d0bda41e3f5..9e6fa05c58c74 100644 --- a/gnu/usr.bin/rcs/lib/rcsrev.c +++ b/gnu/usr.bin/rcs/lib/rcsrev.c @@ -105,7 +105,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(revId, "$Id: rcsrev.c,v 1.4 1995/10/29 22:06:29 peter Exp $") +libId(revId, "$Id: rcsrev.c,v 1.5 1995/12/01 08:26:36 jkh Exp $") static char const *branchtip P((char const*)); static char const *lookupsym P((char const*)); diff --git a/gnu/usr.bin/rcs/lib/rcssyn.c b/gnu/usr.bin/rcs/lib/rcssyn.c index 35772fe7a1bfc..ffbde25a7f9ea 100644 --- a/gnu/usr.bin/rcs/lib/rcssyn.c +++ b/gnu/usr.bin/rcs/lib/rcssyn.c @@ -153,7 +153,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(synId, "$Id: rcssyn.c,v 1.3 1995/10/28 21:49:53 peter Exp $") +libId(synId, "$Id: rcssyn.c,v 1.4 1995/10/29 22:06:30 peter Exp $") static char const *getkeyval P((char const*,enum tokens,int)); static int getdelta P((void)); diff --git a/gnu/usr.bin/rcs/lib/rcstime.c b/gnu/usr.bin/rcs/lib/rcstime.c index a49a8576c51d3..4d347ae8cfe87 100644 --- a/gnu/usr.bin/rcs/lib/rcstime.c +++ b/gnu/usr.bin/rcs/lib/rcstime.c @@ -30,7 +30,7 @@ Report problems and direct all questions to: #include "partime.h" #include "maketime.h" -libId(rcstimeId, "$Id: rcstime.c,v 1.4 1995/06/16 06:19:24 eggert Exp $") +libId(rcstimeId, "$Id: rcstime.c,v 1.2 1995/10/28 21:49:55 peter Exp $") static long zone_offset; /* seconds east of UTC, or TM_LOCAL_ZONE */ static int use_zone_offset; /* if zero, use UTC without zone indication */ diff --git a/gnu/usr.bin/rcs/lib/rcsutil.c b/gnu/usr.bin/rcs/lib/rcsutil.c index 34c61e7c7844c..d878c4e812b43 100644 --- a/gnu/usr.bin/rcs/lib/rcsutil.c +++ b/gnu/usr.bin/rcs/lib/rcsutil.c @@ -186,7 +186,7 @@ Report problems and direct all questions to: #include "rcsbase.h" -libId(utilId, "$Id: rcsutil.c,v 1.4 1995/10/29 22:06:32 peter Exp $") +libId(utilId, "$Id: rcsutil.c,v 1.4.2.1 1997/08/22 07:01:47 peter Exp $") #if !has_memcmp int diff --git a/gnu/usr.bin/rcs/merge/merge.1 b/gnu/usr.bin/rcs/merge/merge.1 index e4860d2573889..32b6195086ba0 100644 --- a/gnu/usr.bin/rcs/merge/merge.1 +++ b/gnu/usr.bin/rcs/merge/merge.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: merge.1,v 5.7 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: merge.1,v 1.2 1995/10/28 21:50:04 peter Exp $ .TH MERGE 1 \*(Dt GNU .SH NAME merge \- three-way file merge diff --git a/gnu/usr.bin/rcs/merge/merge.c b/gnu/usr.bin/rcs/merge/merge.c index 44d33a3d054de..33d6588550942 100644 --- a/gnu/usr.bin/rcs/merge/merge.c +++ b/gnu/usr.bin/rcs/merge/merge.c @@ -41,7 +41,7 @@ badoption(a) } -mainProg(mergeId, "merge", "$Id: merge.c,v 1.8 1995/06/16 06:19:24 eggert Exp $") +mainProg(mergeId, "merge", "$Id: merge.c,v 1.2 1995/10/28 21:50:08 peter Exp $") { register char const *a; char const *arg[3], *label[3], *edarg = 0; diff --git a/gnu/usr.bin/rcs/rcs/rcs.1 b/gnu/usr.bin/rcs/rcs/rcs.1 index 38daf8b62588d..4e8f6e126ef7a 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.1 +++ b/gnu/usr.bin/rcs/rcs/rcs.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcs.1,v 5.13 1995/06/05 08:28:35 eggert Exp $ +.Id $Id: rcs.1,v 1.2 1995/10/28 21:50:11 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcs.c b/gnu/usr.bin/rcs/rcs/rcs.c index bb51afb51410e..04ff22920ad92 100644 --- a/gnu/usr.bin/rcs/rcs/rcs.c +++ b/gnu/usr.bin/rcs/rcs/rcs.c @@ -275,7 +275,7 @@ static struct delrevpair delrev; static struct hshentry *cuthead, *cuttail, *delstrt; static struct hshentries *gendeltas; -mainProg(rcsId, "rcs", "$Id: rcs.c,v 1.3 1995/10/28 21:50:13 peter Exp $") +mainProg(rcsId, "rcs", "$Id: rcs.c,v 1.4 1995/10/29 22:06:37 peter Exp $") { static char const cmdusage[] = "\nrcs usage: rcs -{ae}logins -Afile -{blu}[rev] -cstring -{iILqTU} -ksubst -mrev:msg -{nN}name[:[rev]] -orange -sstate[:rev] -t[text] -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcs/rcsfile.5 b/gnu/usr.bin/rcs/rcs/rcsfile.5 index 5a1929f783353..b33827cba0fa0 100644 --- a/gnu/usr.bin/rcs/rcs/rcsfile.5 +++ b/gnu/usr.bin/rcs/rcs/rcsfile.5 @@ -5,7 +5,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsfile.5in,v 5.6 1995/06/05 08:28:35 eggert Exp $ +.Id $Id: rcsfile.5,v 1.2 1995/10/28 21:50:16 peter Exp $ .ds r \s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcs/rcsintro.1 b/gnu/usr.bin/rcs/rcs/rcsintro.1 index fa970437b5186..f6707a5330470 100644 --- a/gnu/usr.bin/rcs/rcs/rcsintro.1 +++ b/gnu/usr.bin/rcs/rcs/rcsintro.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsintro.1,v 5.3 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsintro.1,v 1.2 1995/10/28 21:50:20 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 index be58c94ccef81..6fdb9a2968842 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.1 +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsclean.1,v 1.12 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsclean.1,v 1.2 1995/10/28 21:50:24 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsclean/rcsclean.c b/gnu/usr.bin/rcs/rcsclean/rcsclean.c index 3d8ecd3fe5d9a..2c8613b0eb621 100644 --- a/gnu/usr.bin/rcs/rcsclean/rcsclean.c +++ b/gnu/usr.bin/rcs/rcsclean/rcsclean.c @@ -38,7 +38,7 @@ static void cleanup P((void)); static RILE *workptr; static int exitstatus; -mainProg(rcscleanId, "rcsclean", "$Id: rcsclean.c,v 5.9 1995/06/16 06:19:24 eggert Exp $") +mainProg(rcscleanId, "rcsclean", "$Id: rcsclean.c,v 1.2 1995/10/28 21:50:27 peter Exp $") { static char const usage[] = "\nrcsclean: usage: rcsclean -ksubst -{nqru}[rev] -T -Vn -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 index 373c3376de721..eaf5328f26393 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsdiff.1,v 5.5 1993/11/03 17:42:27 eggert Exp $ +.Id $Id: rcsdiff.1,v 1.2 1995/10/28 21:50:32 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c index 9e31541f45544..c90b86f9a5e62 100644 --- a/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c +++ b/gnu/usr.bin/rcs/rcsdiff/rcsdiff.c @@ -151,7 +151,7 @@ static int exitstatus; static RILE *workptr; static struct stat workstat; -mainProg(rcsdiffId, "rcsdiff", "$Id: rcsdiff.c,v 1.4 1995/10/29 22:06:42 peter Exp $") +mainProg(rcsdiffId, "rcsdiff", "$Id: rcsdiff.c,v 1.5 1996/01/20 07:51:25 mpp Exp $") { static char const cmdusage[] = "\nrcsdiff usage: rcsdiff -ksubst -q -rrev1 [-rrev2] -Vn -xsuff -zzone [diff options] file ..."; diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 index be669a9f2a0d0..30f76f7100cd6 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsfreeze.1,v 4.4 1990/11/13 15:43:42 hammer Exp $ +.Id $Id: rcsfreeze.1,v 1.2 1995/10/28 21:50:42 peter Exp $ .ds r \s-1RCS\s0 .TH RCSFREEZE 1 \*(Dt GNU .SH NAME diff --git a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh index d41ba75a84d1b..0274c8d0a1ce4 100644 --- a/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh +++ b/gnu/usr.bin/rcs/rcsfreeze/rcsfreeze.sh @@ -2,7 +2,7 @@ # rcsfreeze - assign a symbolic revision number to a configuration of RCS files -# $Id: rcsfreeze.sh,v 1.4 1996/03/12 23:09:04 wosch Exp $ +# $Id: rcsfreeze.sh,v 1.4.2.1 1996/11/28 08:08:29 phk Exp $ # The idea is to run rcsfreeze each time a new version is checked # in. A unique symbolic revision number (C_[number], where number diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 index 96b6a46f0639f..fbfb2ff0aec80 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id: rcsmerge.1,v 5.6 1995/06/01 16:23:43 eggert Exp $ +.Id $Id: rcsmerge.1,v 1.2 1995/10/28 21:50:50 peter Exp $ .ds r \&\s-1RCS\s0 .if n .ds - \%-- .if t .ds - \(em diff --git a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c index a4d9b86c29e9a..0953a985c7c49 100644 --- a/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c +++ b/gnu/usr.bin/rcs/rcsmerge/rcsmerge.c @@ -117,7 +117,7 @@ Report problems and direct all questions to: static char const co[] = CO; -mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 1.3 1995/10/28 21:50:52 peter Exp $") +mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 1.4 1995/10/29 22:06:45 peter Exp $") { static char const cmdusage[] = "\nrcsmerge usage: rcsmerge -rrev1 [-rrev2] -ksubst -{pq}[rev] -Vn -xsuff -zzone file"; diff --git a/gnu/usr.bin/rcs/rcstest b/gnu/usr.bin/rcs/rcstest index 47eab4fc1d7bb..80ea18e4a2af7 100755 --- a/gnu/usr.bin/rcs/rcstest +++ b/gnu/usr.bin/rcs/rcstest @@ -15,7 +15,7 @@ # The current directory and ./RCS must be readable, writable, and searchable. -# $Id: rcstest,v 5.14 1995/06/16 06:19:24 eggert Exp $ +# $Id: rcstest,v 1.2 1995/10/28 21:49:04 peter Exp $ # Copyright 1990, 1991, 1992, 1993, 1994, 1995 Paul Eggert diff --git a/gnu/usr.bin/rcs/rlog/rlog.1 b/gnu/usr.bin/rcs/rlog/rlog.1 index 953617cecdc88..c8c110386366c 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.1 +++ b/gnu/usr.bin/rcs/rlog/rlog.1 @@ -2,7 +2,7 @@ .ds Rv \\$3 .ds Dt \\$4 .. -.Id $Id$ +.Id $Id: rlog.1,v 1.4.2.1 1997/01/26 07:48:21 mpp Exp $ .ds i \&\s-1ISO\s0 .ds r \&\s-1RCS\s0 .ds u \&\s-1UTC\s0 diff --git a/gnu/usr.bin/rcs/rlog/rlog.c b/gnu/usr.bin/rcs/rlog/rlog.c index a3e63be982d45..8ab1639c231e3 100644 --- a/gnu/usr.bin/rcs/rlog/rlog.c +++ b/gnu/usr.bin/rcs/rlog/rlog.c @@ -218,7 +218,7 @@ static struct rcslockers *lockerlist; static struct stateattri *statelist; -mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.9 1995/10/29 18:07:04 peter Exp $") +mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.10 1995/10/29 22:06:48 peter Exp $") { static char const cmdusage[] = "\nrlog usage: rlog -{bhLNRt} -v[string] -ddates -l[lockers] -r[revs] -sstates -Vn -w[logins] -xsuff -zzone file ..."; diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh index 931dc5c1ae799..c6570508f0a18 100644 --- a/gnu/usr.bin/send-pr/send-pr.sh +++ b/gnu/usr.bin/send-pr/send-pr.sh @@ -20,7 +20,7 @@ # along with GNU GNATS; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. # -# $Id$ +# $Id: send-pr.sh,v 1.6 1996/10/19 21:42:40 joerg Exp $ # The version of this send-pr. VERSION=3.2 diff --git a/gnu/usr.bin/tar/getdate.y b/gnu/usr.bin/tar/getdate.y index aa8f6b512a33c..941af0cfacb39 100644 --- a/gnu/usr.bin/tar/getdate.y +++ b/gnu/usr.bin/tar/getdate.y @@ -1,5 +1,5 @@ %{ -/* $Revision: 1.1.1.1 $ +/* $Revision: 1.2 $ ** ** Originally written by Steven M. Bellovin <smb@research.att.com> while ** at the University of North Carolina at Chapel Hill. Later tweaked by @@ -98,7 +98,7 @@ extern struct tm *localtime(); #if !defined(lint) && !defined(SABER) static char RCS[] = - "$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.1.1.1 1993/06/18 04:22:21 jkh Exp $"; + "$Header: /home/ncvs/src/gnu/usr.bin/tar/getdate.y,v 1.2 1994/11/04 02:12:22 jkh Exp $"; #endif /* !defined(lint) && !defined(SABER) */ diff --git a/gnu/usr.bin/tar/tar.1 b/gnu/usr.bin/tar/tar.1 index ff630f5e7a3de..48a7c68fb138b 100644 --- a/gnu/usr.bin/tar/tar.1 +++ b/gnu/usr.bin/tar/tar.1 @@ -3,7 +3,7 @@ .\" .\" Written by John F. Woods <jfw@jfwhome.funhouse.com> .\" -.\" $Id: tar.1,v 1.6 1996/08/13 00:13:49 chuckr Exp $ +.\" $Id: tar.1,v 1.6.2.1 1997/06/05 23:13:54 max Exp $ .\" .Dd 6 August 1994 .Os FreeBSD diff --git a/gnu/usr.bin/texinfo/Makefile b/gnu/usr.bin/texinfo/Makefile index f1539d5a2903e..8b4839510f00f 100644 --- a/gnu/usr.bin/texinfo/Makefile +++ b/gnu/usr.bin/texinfo/Makefile @@ -1,5 +1,5 @@ # -# $Id$ +# $Id: Makefile,v 1.3.6.1 1997/04/11 17:53:54 asami Exp $ # SUBDIR= libtxi makeinfo info install-info doc diff --git a/gnu/usr.bin/texinfo/Makefile.inc b/gnu/usr.bin/texinfo/Makefile.inc index 5ee8874939a64..74fef6a26f7a1 100644 --- a/gnu/usr.bin/texinfo/Makefile.inc +++ b/gnu/usr.bin/texinfo/Makefile.inc @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile.inc,v 1.5.2.1 1997/04/11 17:53:54 asami Exp $ TXIDIR= ${.CURDIR}/../../../../contrib/texinfo diff --git a/gnu/usr.bin/texinfo/doc/Makefile b/gnu/usr.bin/texinfo/doc/Makefile index 3416ad3bcb64f..eafc599954ffd 100644 --- a/gnu/usr.bin/texinfo/doc/Makefile +++ b/gnu/usr.bin/texinfo/doc/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3.2.1 1997/04/11 17:53:58 asami Exp $ INFO= texinfo info info-stnd makeinfo diff --git a/gnu/usr.bin/texinfo/info/Makefile b/gnu/usr.bin/texinfo/info/Makefile index 2ba6f067c55e0..3b0c84d38d882 100644 --- a/gnu/usr.bin/texinfo/info/Makefile +++ b/gnu/usr.bin/texinfo/info/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.4.2.1 1997/04/11 17:54:00 asami Exp $ PROG= info diff --git a/gnu/usr.bin/texinfo/install-info/Makefile b/gnu/usr.bin/texinfo/install-info/Makefile index e233f5db190fc..764a8efcc3721 100644 --- a/gnu/usr.bin/texinfo/install-info/Makefile +++ b/gnu/usr.bin/texinfo/install-info/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1997/04/07 16:52:45 bde Exp $ +# $Id: Makefile,v 1.6.2.1 1997/08/29 09:11:24 obrien Exp $ PROG= install-info diff --git a/gnu/usr.bin/texinfo/install-info/install-info.1 b/gnu/usr.bin/texinfo/install-info/install-info.1 index dffddbc26f55b..1efde1df6d014 100644 --- a/gnu/usr.bin/texinfo/install-info/install-info.1 +++ b/gnu/usr.bin/texinfo/install-info/install-info.1 @@ -23,7 +23,7 @@ .\" (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$ +.\" $Id: install-info.1,v 1.1.2.1 1997/08/29 09:11:26 obrien Exp $ .\" .\" .TH install-info 1 .Dd August 29, 1997 diff --git a/gnu/usr.bin/texinfo/libtxi/Makefile b/gnu/usr.bin/texinfo/libtxi/Makefile index 73a371356129e..4a339c38cdda9 100644 --- a/gnu/usr.bin/texinfo/libtxi/Makefile +++ b/gnu/usr.bin/texinfo/libtxi/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.4 1997/04/07 16:52:49 bde Exp $ LIB= txi INTERNALLIB= true diff --git a/gnu/usr.bin/texinfo/makeinfo/Makefile b/gnu/usr.bin/texinfo/makeinfo/Makefile index a5398940a71f2..104b5e267b0af 100644 --- a/gnu/usr.bin/texinfo/makeinfo/Makefile +++ b/gnu/usr.bin/texinfo/makeinfo/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.3.6.1 1997/04/11 17:54:01 asami Exp $ PROG= makeinfo NOMAN= yes |