[BACK]Return to ox_texmacs.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / kxx

Diff for /OpenXM/src/kxx/ox_texmacs.c between version 1.10 and 1.12

version 1.10, 2004/03/03 06:09:29 version 1.12, 2004/03/03 12:27:31
Line 1 
Line 1 
 /* $OpenXM: OpenXM/src/kxx/ox_texmacs.c,v 1.9 2004/03/03 02:31:50 takayama Exp $ */  /* $OpenXM: OpenXM/src/kxx/ox_texmacs.c,v 1.11 2004/03/03 09:44:39 takayama Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <setjmp.h>  #include <setjmp.h>
Line 103  main(int argc,char *argv[]) {
Line 103  main(int argc,char *argv[]) {
         }else if (strcmp(argv[i],"--k0") == 0) {          }else if (strcmp(argv[i],"--k0") == 0) {
           TM_Engine = K0;            TM_Engine = K0;
         }else{          }else{
           printv("Unknown option\n");            /* printv("Unknown option\n"); */
         }          }
   }    }
   
Line 192  main(int argc,char *argv[]) {
Line 192  main(int argc,char *argv[]) {
         else printv("Output is too large.\n");          else printv("Output is too large.\n");
       }else{        }else{
         KSexecuteString(" ox.engine 1 oxpops "); /* Discard the result. */          KSexecuteString(" ox.engine 1 oxpops "); /* Discard the result. */
           /* Push and pop dummy data to wait until the computation finishes. */
           KSexecuteString(" ox.engine 0 oxpushcmo ox.engine oxpopcmo ");
           ob = KSpop();
         printv("");          printv("");
       }        }
     }      }
Line 252  static char *readString(FILE *fp, char *prolog, char *
Line 255  static char *readString(FILE *fp, char *prolog, char *
     s[n++] = c; s[n] = 0;  m++;      s[n++] = c; s[n] = 0;  m++;
     INC_BUF ;      INC_BUF ;
   }    }
   if (s[n-1] == '$' && TM_Engine == ASIR) {  
         TM_do_not_print = 1; s[n-1] = ' ';  
   } else if (s[n-1] == ';' && TM_Engine == SM1) {  
         TM_do_not_print = 1; s[n-1] = ' ';  
   } else TM_do_not_print = 0;  
   /* Check the escape sequence */    /* Check the escape sequence */
   if (strcmp(&(s[start]),"!quit;") == 0) {    if (strcmp(&(s[start]),"!quit;") == 0) {
     printv("Terminated the process ox_texmacs.\n");      printv("Terminated the process ox_texmacs.\n");
     exit(0);      exit(0);
   }    }
   /* Check the escape sequence to change the globa env. */    /* Check the escape sequence to change the global env. */
   if (strcmp(&(s[start]),"!verbatim;") == 0) {    if (strcmp(&(s[start]),"!verbatim;") == 0) {
     printv("Output mode is changed to verbatim mode.");      printv("Output mode is changed to verbatim mode.");
     Format=0;      Format=0;
Line 288  static char *readString(FILE *fp, char *prolog, char *
Line 286  static char *readString(FILE *fp, char *prolog, char *
     TM_Engine=K0; startEngine(TM_Engine,"k0");      TM_Engine=K0; startEngine(TM_Engine,"k0");
     return NULL;      return NULL;
   }    }
   
     /* Set TM_do_no_print */
     if (s[n-1] == '$' && TM_Engine == ASIR) {
           TM_do_not_print = 1; s[n-1] = ' ';
     } else if (s[n-1] == ';' && TM_Engine == SM1) {
           TM_do_not_print = 1; s[n-1] = ' ';
     } else TM_do_not_print = 0;
   
   for (i=0; i < strlen(epilog); i++) {    for (i=0; i < strlen(epilog); i++) {
     s[n++] = epilog[i];  s[n] = 0;      s[n++] = epilog[i];  s[n] = 0;

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

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