diff options
author | steve <steve@FreeBSD.org> | 1997-08-07 21:33:47 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1997-08-07 21:33:47 +0000 |
commit | 792ebc1ba3981adf13023821a2f7c78a8ef90e4e (patch) | |
tree | 7992cbdae017dc974bc3478782222e4aede15b88 /bin/ed/undo.c | |
parent | 548d1c00562f600dffcd4e78769f98102770f319 (diff) | |
download | FreeBSD-src-792ebc1ba3981adf13023821a2f7c78a8ef90e4e.zip FreeBSD-src-792ebc1ba3981adf13023821a2f7c78a8ef90e4e.tar.gz |
sccsid -> rcsid and fix some minor nits.
Diffstat (limited to 'bin/ed/undo.c')
-rw-r--r-- | bin/ed/undo.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/ed/undo.c b/bin/ed/undo.c index 7023cd6..549a354 100644 --- a/bin/ed/undo.c +++ b/bin/ed/undo.c @@ -23,12 +23,15 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $Id$ */ #ifndef lint +#if 0 static char * const rcsid = "@(#)undo.c,v 1.1 1994/02/01 00:34:44 alm Exp"; +#else +static char * const rcsid = + "$Id: undo.c,v 1.6 1997/02/22 14:03:20 peter Exp $"; +#endif #endif /* not lint */ #include "ed.h" |