From lechner Tue Apr 23 21:22:33 1996
Received: (from lechner@localhost) by jupiter.cs.uml.edu (8.7.3/8.7.3) id VAA31475 for lechner; Tue, 23 Apr 1996 21:22:33 -0400 (EDT)
From: Bob Lechner <lechner>
Message-Id: <199604240122.VAA31475@jupiter.cs.uml.edu>
Subject: cvs log and rcs id formats (TBAdded for chgen checkin and JPsim)
To: lechner (Bob Lechner)
Date: Tue, 23 Apr 1996 21:22:32 -0400 (EDT)
X-Mailer: ELM [version 2.4 PL25]
Content-Type: text
X-Mozilla-Status: 0000
Status: RO

>From bde/src/bde.cc:

// Edit history :
//
// $Log: bde.cc,v $
// Revision 1.2  1995/04/04  04:40:17  cgopal
// File  bde20 and others were fixed so that multiple definitions
// of variables were eliminated. All enumarated types were capitializes and give
// n a prefix.
//
// Arguments to XtAddcallback was casted to the right type. Handler.cc
// was also fixed to use right variables.
//
// Revision 1.3  1994/04/15  18:14:39  mtorpey
...
/////////////////////////////////////////////////////////////////////
#ifndef lint
static char rcsid[] = 
   "$Id: bde.cc,v 1.2 1995/04/04 04:40:17 cgopal Exp $";
#endif

===========================================================
These brackets surround each filename, introduced by a comment (// for C++):
	$Log:   <fname>       $

These brackets surround the rcs id:

#ifndef lint
static char rcsid[] = 
   "$Id: <fname>  1.2 1995/04/04 04:40:17 cgopal Exp $";
#endif




