********> bugfix.8 Author: Bill Ross Date: Mar 5 2000 Programs: tleap Severity: moderate Description: 'edit obj' in tleap gives a proper error message, but destroys the ability to reference the object later. ('edit' only works with xleap.) Fix: Apply the following to commands.c: ---------------------------------------------------------------------------- *** OLD commands.c --- NEW commands.c *************** *** 2992,2998 **** if ( !GbGraphicalEnvironment ) { VP0(( "The edit command only works in a graphical environment.\n" )); GrMainResult.iCommand = CNONE; - bCmdDeleteObj = TRUE; return(NULL); } if ( !bCmdGoodArguments( "edit", iArgCount, aaArgs, "ups" ) ) { --- 2992,2997 ---- if ( !GbGraphicalEnvironment ) { VP0(( "The edit command only works in a graphical environment.\n" )); GrMainResult.iCommand = CNONE; return(NULL); } if ( !bCmdGoodArguments( "edit", iArgCount, aaArgs, "ups" ) ) { ----------------------------------------------------------------------------