[BACK]Return to xm CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / lib

Diff for /OpenXM_contrib2/asir2000/lib/xm between version 1.5 and 1.8

version 1.5, 2000/02/01 12:22:01 version 1.8, 2000/04/13 04:30:23
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/lib/xm,v 1.4 2000/01/23 00:25:56 takayama Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/lib/xm,v 1.7 2000/02/11 04:30:16 takayama Exp $ */
 /**  xm  **/  /**  xm  **/
 Xm_noX = 0$  Xm_noX = 0$
 /* 1 : using X-window system. 0 : not using X-window system. */  /* 1 : using X-window system. 0 : not using X-window system. */
Line 6  Xm_noX = 0$  
Line 6  Xm_noX = 0$  
          cf. var.sm1,  debugMode           cf. var.sm1,  debugMode
 */  */
   
 print("xm Version 20000123. ox_help(0); ox_help(\"keyword\"); for help message ")$  print("xm version 20000202. Copyright (C) OpenXM Developing Team. 2000.")$
 print("Copyright (C) OpenXM Developing Team. 2000")$  print("http://www.math.sci.kobe-u.ac.jp/OpenXM ")$
   print("ox_help(0); ox_help(\"keyword\"); ox_grep(\"keyword\"); for help message ")$
 XM_debug=1$  XM_debug=1$
   
 /*&C-texi  /*&C-texi
Line 152  def ox_check_errors2(P) {
Line 153  def ox_check_errors2(P) {
   
 def first(A) {return(A[0]);}  def first(A) {return(A[0]);}
   
   
   def ox_grep(A) {
     if (getenv("LANG") == "ja_JP.EUC") {
       F = get_rootdir()+"/help-jp/";
     }else{
       F = get_rootdir()+"/help-eg/";
     }
     Pager = getenv("PAGER");
     if (Pager == 0) Pager="more";
     OF = F+"xm.help";
   
     print("---------- Result of grep  (ox_grep) ---------------------")$
     shell("(cd " + F + " ; " + " grep "+A+" * xm.help/* | "+Pager+" )");
   
     print("---------- Possible help keyword  for help -------------")$
     shell("ls "+F+" | grep "+A);
     print("---------- Possible help keyword  for ox_help ----------")$
     shell("ls "+OF+" | grep "+A);
   
     return(0);
   }
   
   
   
 load("sm1")$  load("sm1")$
 load("gnuplot")$  load("gnuplot")$
 load("tigers")$  load("tigers")$
 load("phc")$  load("phc")$
   load("longname")$
   
 end$  end$

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

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