forked from Lainports/freebsd-ports
port is the database core & data entry app only. Reports will follow in a separate package, since they are updated more frequently. PR: 20585 Submitted by: Matthew Emmerton <root@gabby.gsicomp.on.ca>
19 lines
453 B
Text
19 lines
453 B
Text
*** tools/btedit.c.orig Thu Aug 10 01:42:15 2000
|
|
--- tools/btedit.c Thu Aug 10 01:41:58 2000
|
|
***************
|
|
*** 66,72 ****
|
|
exit(0);
|
|
}
|
|
|
|
! if((editor = getenv("LLEDITOR")) && *editor);
|
|
else editor = "vi";
|
|
sprintf(cmdbuf, "%s btedit.tmp", editor);
|
|
#ifdef WIN32
|
|
--- 66,72 ----
|
|
exit(0);
|
|
}
|
|
|
|
! if((editor = (char *)getenv("LLEDITOR")) && *editor);
|
|
else editor = "vi";
|
|
sprintf(cmdbuf, "%s btedit.tmp", editor);
|
|
#ifdef WIN32
|