| version 1.13, 2003/08/21 02:30:23 | 
version 1.14, 2003/11/20 09:20:36 | 
 | 
 | 
|  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.12 2003/08/20 01:39:17 takayama Exp $ */ | 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.13 2003/08/21 02:30:23 takayama Exp $ */ | 
|  #include <stdio.h> | 
 #include <stdio.h> | 
|  #include "datatype.h" | 
 #include "datatype.h" | 
|  #include "stackm.h" | 
 #include "stackm.h" | 
| Line 56  struct object KsystemVariable(ob) | 
 
  | 
| Line 56  struct object KsystemVariable(ob) | 
 
 
 | 
|    extern int TraceLift; | 
   extern int TraceLift; | 
|    extern int DoCancel; | 
   extern int DoCancel; | 
|    extern int DebugContentReduction; | 
   extern int DebugContentReduction; | 
|   | 
   extern int QuoteMode; | 
|   | 
  | 
|    int n,i; | 
   int n,i; | 
|    struct object ob1,ob2,ob3,ob4; | 
   struct object ob1,ob2,ob3,ob4; | 
| Line 193  struct object KsystemVariable(ob) | 
 
  | 
| Line 194  struct object KsystemVariable(ob) | 
 
 
 | 
|          rob = KpoInteger(DoCancel); | 
         rob = KpoInteger(DoCancel); | 
|        }else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) { | 
       }else if (strcmp(ob1.lc.str,"DebugContentReduction")==0) { | 
|          rob = KpoInteger(DebugContentReduction); | 
         rob = KpoInteger(DebugContentReduction); | 
|   | 
       }else if (strcmp(ob1.lc.str,"QuoteMode")==0) { | 
|   | 
         rob = KpoInteger(QuoteMode); | 
|        }else{ | 
       }else{ | 
|          warningKan("KsystemVariable():Unknown key word.\n"); | 
         warningKan("KsystemVariable():Unknown key word.\n"); | 
|        } | 
       } | 
| Line 326  struct object KsystemVariable(ob) | 
 
  | 
| Line 329  struct object KsystemVariable(ob) | 
 
 
 | 
|        }else if (strcmp(ob1.lc.str,"DebugContentReduction") == 0) { | 
       }else if (strcmp(ob1.lc.str,"DebugContentReduction") == 0) { | 
|          DebugContentReduction = KopInteger(ob2); | 
         DebugContentReduction = KopInteger(ob2); | 
|          rob = KpoInteger(DebugContentReduction); | 
         rob = KpoInteger(DebugContentReduction); | 
|   | 
       }else if (strcmp(ob1.lc.str,"QuoteMode") == 0) { | 
|   | 
         QuoteMode = KopInteger(ob2); | 
|   | 
         rob = KpoInteger(QuoteMode); | 
|        }else{ | 
       }else{ | 
|          warningKan("KsystemVariable():Unknown key word.\n"); | 
         warningKan("KsystemVariable():Unknown key word.\n"); | 
|        } | 
       } |