[BACK]Return to glob.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/glob.c between version 1.12 and 1.13

version 1.12, 2000/12/05 01:24:57 version 1.13, 2000/12/22 10:03:31
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.11 2000/11/08 06:21:18 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.12 2000/12/05 01:24:57 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "al.h"  #include "al.h"
Line 219  int status;
Line 219  int status;
                         fputc(0xff,asir_out);                          fputc(0xff,asir_out);
                 if ( asir_out )                  if ( asir_out )
                         fflush(asir_out);                          fflush(asir_out);
   #if FEP
                   if ( do_fep ) {
                           stifle_history(MAXHIST);
                           write_history(asir_history);
                   }
   #endif
                 ExitAsir();                  ExitAsir();
         }          }
 }  }
Line 297  char **av;
Line 303  char **av;
                 } else if ( !strcmp(*av,"-display") && (ac >= 2) ) {                  } else if ( !strcmp(*av,"-display") && (ac >= 2) ) {
                         strcpy(displayname,*(av+1)); av += 2; ac -= 2;                          strcpy(displayname,*(av+1)); av += 2; ac -= 2;
 #endif  #endif
   #if FEP
                   } else if ( !strcmp(*av,"-fep") ) {
                           do_fep = 1; av++; ac--;
   #endif
 #if PARI  #if PARI
                 } else if ( !strcmp(*av,"-paristack") ) {                  } else if ( !strcmp(*av,"-paristack") ) {
                         extern int paristack;                          extern int paristack;
Line 308  char **av;
Line 318  char **av;
                         asir_terminate(1);                          asir_terminate(1);
                 }                  }
         }          }
   #if FEP
           if ( do_fep ) {
                   char *home;
                   home = (char *)getenv("HOME");
                   if (!home)
                           home = ".";
                   sprintf (asir_history, "%s/.asir_history",home);
                   read_history(asir_history);
                   using_history();
           }
   #endif
 }  }
   
 #include <signal.h>  #include <signal.h>

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

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