[BACK]Return to option.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/option.c between version 1.12 and 1.13

version 1.12, 2003/08/20 01:39:17 version 1.13, 2003/08/21 02:30:23
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.11 2003/08/19 08:02:10 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.12 2003/08/20 01:39:17 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include "datatype.h"  #include "datatype.h"
 #include "stackm.h"  #include "stackm.h"
Line 55  struct object KsystemVariable(ob)
Line 55  struct object KsystemVariable(ob)
   extern int EcartAutomaticHomogenization;    extern int EcartAutomaticHomogenization;
   extern int TraceLift;    extern int TraceLift;
   extern int DoCancel;    extern int DoCancel;
     extern int DebugContentReduction;
   
   int n,i;    int n,i;
   struct object ob1,ob2,ob3,ob4;    struct object ob1,ob2,ob3,ob4;
Line 190  struct object KsystemVariable(ob)
Line 191  struct object KsystemVariable(ob)
         rob = KpoInteger(TraceLift);          rob = KpoInteger(TraceLift);
       }else if (strcmp(ob1.lc.str,"DoCancel")==0) {        }else if (strcmp(ob1.lc.str,"DoCancel")==0) {
         rob = KpoInteger(DoCancel);          rob = KpoInteger(DoCancel);
         }else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) {
           rob = KpoInteger(DebugContentReduction);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }
Line 320  struct object KsystemVariable(ob)
Line 323  struct object KsystemVariable(ob)
       }else if (strcmp(ob1.lc.str,"DoCancel") == 0) {        }else if (strcmp(ob1.lc.str,"DoCancel") == 0) {
         DoCancel = KopInteger(ob2);          DoCancel = KopInteger(ob2);
         rob = KpoInteger(DoCancel);          rob = KpoInteger(DoCancel);
         }else if (strcmp(ob1.lc.str,"DebugContentReduction") == 0) {
           DebugContentReduction = KopInteger(ob2);
           rob = KpoInteger(DebugContentReduction);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

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