Return to BSD News archive
Received: by minnie.vk1xwt.ampr.org with NNTP id AA2229 ; Mon, 01 Mar 93 10:50:10 EST Path: sserve!manuel.anu.edu.au!munnari.oz.au!news.Hawaii.Edu!ames!agate!usenet.ins.cwru.edu!ljo From: ljo@r2d2.eeap.cwru.edu (L Jonas Olsson) Newsgroups: comp.os.386bsd.apps Subject: Re: patches for elvis-1.7 Date: 25 Feb 1993 19:21:44 GMT Organization: Case Western Reserve Univ. Cleveland, Ohio (USA) Lines: 44 Message-ID: <1mj688INNi46@usenet.INS.CWRU.Edu> References: <1993Feb25.154025.3218@netcom.com> NNTP-Posting-Host: proteus.eeap.cwru.edu In article <1993Feb25.154025.3218@netcom.com> alm@netcom.com (Andrew Moore) writes: > >Here are some patches for installing elvis-1.7 under 386BSD. They >"fix" the global and substitute commands to use arbitrary delimiters. >They make the (elvis) ctags command more robust. And they set the >config.h parameters and Makefile for 386BSD. >-Andrew Moore <alm@netcom.com> After installing the above referenced patches you might also want to use elvis as ed editor. For this the patches below are neccesary. Jonas Olsson ljo@po.cwru.edu P.S. You can find the source for elvis-1.7 at ref.tfs.com:/usr/packages/elvis/elvis-1.7.tar.z (gzip'ed) Apply these patches *after* applying Andrew's patches. *** Makefile.mix~ Thu Feb 25 13:24:38 1993 --- Makefile.mix Thu Feb 25 13:55:40 1993 *************** *** 594,599 **** --- 594,600 ---- install -m 4755 -o root -g wheel elvispreserve /usr/libexec install -m 755 -o bin -g bin elvis ref elvisrecover /usr/bin -ln /usr/bin/elvis /usr/bin/vi + -ln /usr/bin/elvis /usr/bin/ed -ln /usr/bin/elvis /usr/bin/ex -ln /usr/bin/elvis /usr/bin/view -ln /usr/bin/elvis /usr/bin/input *** main.c~ Sat Jan 2 05:41:59 1993 --- main.c Thu Feb 25 13:46:41 1993 *************** *** 53,58 **** --- 53,59 ---- switch (argv[0][strlen(argv[0]) - 1]) { case 'x': /* "ex" */ + case 'd': /* "ed" */ mode = MODE_EX; break;