[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.16 and 1.21

version 1.16, 2005/06/16 05:07:23 version 1.21, 2020/10/06 11:33:46
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.15 2004/09/17 02:42:57 takayama Exp $ */  /* $OpenXM: OpenXM/src/kan96xx/Kan/option.c,v 1.20 2016/03/31 05:27:34 takayama Exp $ */
 #include <stdio.h>  #include <stdio.h>
   #include <string.h>
 #include "datatype.h"  #include "datatype.h"
 #include "stackm.h"  #include "stackm.h"
 #include "extern.h"  #include "extern.h"
Line 7 
Line 8 
 #include "kclass.h"  #include "kclass.h"
 #include "lookup.h"  #include "lookup.h"
 #include <signal.h>  #include <signal.h>
   #include "mysig.h"
   
 extern void ctrlC();  extern void ctrlC();
   void warningOption(char *str);
   
   
 struct object KsystemVariable(ob)  struct object KsystemVariable(ob)
Line 17  struct object KsystemVariable(ob)
Line 20  struct object KsystemVariable(ob)
   /* Don't forget to write the keys in usage.c */    /* Don't forget to write the keys in usage.c */
   extern int PrintDollar;    extern int PrintDollar;
   extern int Wrap;    extern int Wrap;
     extern int COutput;
   extern struct ring *CurrentRingp;    extern struct ring *CurrentRingp;
   extern int Verbose;    extern int Verbose;
   extern int UseCriterion1;    extern int UseCriterion1;
Line 58  struct object KsystemVariable(ob)
Line 62  struct object KsystemVariable(ob)
   extern int DebugContentReduction;    extern int DebugContentReduction;
   extern int QuoteMode;    extern int QuoteMode;
   extern int RestrictedMode, RestrictedMode_saved;    extern int RestrictedMode, RestrictedMode_saved;
     extern int UseDsmall;
   
   int n,i;    int n,i;
   struct object ob1 = OINIT;    struct object ob1 = OINIT;
Line 74  struct object KsystemVariable(ob)
Line 79  struct object KsystemVariable(ob)
         rob = KpoInteger(PrintDollar);          rob = KpoInteger(PrintDollar);
       }else if (strcmp(ob1.lc.str,"Wrap") == 0) {        }else if (strcmp(ob1.lc.str,"Wrap") == 0) {
         rob = KpoInteger(Wrap);          rob = KpoInteger(Wrap);
         }else if (strcmp(ob1.lc.str,"COutput") == 0) {
           rob = KpoInteger(COutput);
       }else if (strcmp(ob1.lc.str,"P") == 0) {        }else if (strcmp(ob1.lc.str,"P") == 0) {
         rob = KpoInteger(CurrentRingp->p);          rob = KpoInteger(CurrentRingp->p);
       }else if (strcmp(ob1.lc.str,"N") == 0) {        }else if (strcmp(ob1.lc.str,"N") == 0) {
Line 202  struct object KsystemVariable(ob)
Line 209  struct object KsystemVariable(ob)
         rob = KpoInteger(DebugContentReduction);          rob = KpoInteger(DebugContentReduction);
       }else if (strcmp(ob1.lc.str,"QuoteMode")==0) {        }else if (strcmp(ob1.lc.str,"QuoteMode")==0) {
         rob = KpoInteger(QuoteMode);          rob = KpoInteger(QuoteMode);
         }else if (strcmp(ob1.lc.str,"UseDsmall")==0) {
           rob = KpoInteger(UseDsmall);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }
Line 226  struct object KsystemVariable(ob)
Line 235  struct object KsystemVariable(ob)
           P = ob2.lc.ival;  Q should be set here too.            P = ob2.lc.ival;  Q should be set here too.
           CurrentRingp->p = P;            CurrentRingp->p = P;
           rob = KpoInteger(P); */            rob = KpoInteger(P); */
         }else if (strcmp(ob1.lc.str,"COutput") == 0) {
           COutput = ob2.lc.ival;
           rob = KpoInteger(COutput);
       }else if (strcmp(ob1.lc.str,"NN") == 0) {        }else if (strcmp(ob1.lc.str,"NN") == 0) {
         if (ob2.lc.ival <= CurrentRingp->n && ob2.lc.ival >= CurrentRingp->m) {          if (ob2.lc.ival <= CurrentRingp->n && ob2.lc.ival >= CurrentRingp->m) {
           CurrentRingp->nn = ob2.lc.ival;            CurrentRingp->nn = ob2.lc.ival;
Line 274  struct object KsystemVariable(ob)
Line 286  struct object KsystemVariable(ob)
         rob = KpoInteger(Strict2);          rob = KpoInteger(Strict2);
       }else if (strcmp(ob1.lc.str,"SigIgn") == 0) {        }else if (strcmp(ob1.lc.str,"SigIgn") == 0) {
         SigIgn = ob2.lc.ival;          SigIgn = ob2.lc.ival;
         if (SigIgn) signal(SIGINT,SIG_IGN);          if (SigIgn) mysignal(SIGINT,SIG_IGN);
         else signal(SIGINT,ctrlC);          else mysignal(SIGINT,ctrlC);
         rob = KpoInteger(SigIgn);          rob = KpoInteger(SigIgn);
       }else if (strcmp(ob1.lc.str,"KSPushEnvMode") == 0) {        }else if (strcmp(ob1.lc.str,"KSPushEnvMode") == 0) {
         KSPushEnvMode = ob2.lc.ival;          KSPushEnvMode = ob2.lc.ival;
Line 346  struct object KsystemVariable(ob)
Line 358  struct object KsystemVariable(ob)
       }else if (strcmp(ob1.lc.str,"QuoteMode") == 0) {        }else if (strcmp(ob1.lc.str,"QuoteMode") == 0) {
         QuoteMode = KopInteger(ob2);          QuoteMode = KopInteger(ob2);
         rob = KpoInteger(QuoteMode);          rob = KpoInteger(QuoteMode);
         }else if (strcmp(ob1.lc.str,"UseDsmall") == 0) {
           UseDsmall = KopInteger(ob2);
           rob = KpoInteger(UseDsmall);
       }else{        }else{
         warningKan("KsystemVariable():Unknown key word.\n");          warningKan("KsystemVariable():Unknown key word.\n");
       }        }
Line 453  struct object KsystemVariable(ob)
Line 468  struct object KsystemVariable(ob)
   return(rob);    return(rob);
 }  }
   
 warningOption(str)  void warningOption(str)
      char *str;       char *str;
 {  {
   fprintf(stderr,"Warning(option.c): %s\n",str);    fprintf(stderr,"Warning(option.c): %s\n",str);

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.21

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