[BACK]Return to miscf.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/miscf.c between version 1.25 and 1.26

version 1.25, 2004/11/16 01:47:31 version 1.26, 2006/02/08 02:11:19
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.24 2004/10/27 08:21:47 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.25 2004/11/16 01:47:31 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 264  Q *rp;
Line 264  Q *rp;
 void Pquit(rp)  void Pquit(rp)
 pointer *rp;  pointer *rp;
 {  {
         if ( !NEXT(asir_infile) )          if ( asir_infile && NEXT(asir_infile) && asir_infile->ready_for_longjmp )
                 asir_terminate(2);                  LONGJMP(asir_infile->jmpbuf,1);
         else {          else {
                 closecurrentinput();                  closecurrentinput();
                 if ( !asir_infile->fp && strcmp(asir_infile->name,"string") )                  asir_terminate(2);
                         asir_terminate(2);  
         }          }
         *rp = 0;          *rp = 0;
 }  }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>