[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.7 and 1.8

version 1.7, 2003/07/17 07:33:03 version 1.8, 2003/07/17 23:37:02
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.6 2003/07/10 05:01:41 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.7 2003/07/17 07:33:03 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include "datatype.h"  #include "datatype.h"
 #include "stackm.h"  #include "stackm.h"
Line 51  struct object KsystemVariable(ob)
Line 51  struct object KsystemVariable(ob)
   extern char *RightBracket;    extern char *RightBracket;
   extern int SecureMode;    extern int SecureMode;
   extern int Ecart;    extern int Ecart;
     extern int EcartAutomaticHomogenization;
   
   int n,i;    int n,i;
   struct object ob1,ob2,ob3,ob4;    struct object ob1,ob2,ob3,ob4;
Line 180  struct object KsystemVariable(ob)
Line 181  struct object KsystemVariable(ob)
         rob = KpoInteger(SecureMode);          rob = KpoInteger(SecureMode);
       }else if (strcmp(ob1.lc.str,"Ecart")==0) {        }else if (strcmp(ob1.lc.str,"Ecart")==0) {
         rob = KpoInteger(Ecart);          rob = KpoInteger(Ecart);
         }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization")==0) {
           rob = KpoInteger(EcartAutomaticHomogenization);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }
Line 298  struct object KsystemVariable(ob)
Line 301  struct object KsystemVariable(ob)
       }else if (strcmp(ob1.lc.str,"Ecart") == 0) {        }else if (strcmp(ob1.lc.str,"Ecart") == 0) {
         Ecart = KopInteger(ob2);          Ecart = KopInteger(ob2);
         rob = KpoInteger(Ecart);          rob = KpoInteger(Ecart);
         }else if (strcmp(ob1.lc.str,"EcartAutomaticHomogenization") == 0) {
           Ecart = KopInteger(ob2);
           rob = KpoInteger(EcartAutomaticHomogenization);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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