=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Kan/option.c,v retrieving revision 1.12 retrieving revision 1.14 diff -u -p -r1.12 -r1.14 --- OpenXM/src/kan96xx/Kan/option.c 2003/08/20 01:39:17 1.12 +++ OpenXM/src/kan96xx/Kan/option.c 2003/11/20 09:20:36 1.14 @@ -1,4 +1,4 @@ -/* $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.13 2003/08/21 02:30:23 takayama Exp $ */ #include #include "datatype.h" #include "stackm.h" @@ -55,6 +55,8 @@ struct object KsystemVariable(ob) extern int EcartAutomaticHomogenization; extern int TraceLift; extern int DoCancel; + extern int DebugContentReduction; + extern int QuoteMode; int n,i; struct object ob1,ob2,ob3,ob4; @@ -190,6 +192,10 @@ struct object KsystemVariable(ob) rob = KpoInteger(TraceLift); }else if (strcmp(ob1.lc.str,"DoCancel")==0) { rob = KpoInteger(DoCancel); + }else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) { + rob = KpoInteger(DebugContentReduction); + }else if (strcmp(ob1.lc.str,"QuoteMode")==0) { + rob = KpoInteger(QuoteMode); }else{ warningKan("KsystemVariable():Unknown key word.\n"); } @@ -320,6 +326,12 @@ struct object KsystemVariable(ob) }else if (strcmp(ob1.lc.str,"DoCancel") == 0) { DoCancel = KopInteger(ob2); rob = KpoInteger(DoCancel); + }else if (strcmp(ob1.lc.str,"DebugContentReduction") == 0) { + DebugContentReduction = KopInteger(ob2); + rob = KpoInteger(DebugContentReduction); + }else if (strcmp(ob1.lc.str,"QuoteMode") == 0) { + QuoteMode = KopInteger(ob2); + rob = KpoInteger(QuoteMode); }else{ warningKan("KsystemVariable():Unknown key word.\n"); }