[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.6

version 1.5, 2000/02/01 12:22:01 version 1.6, 2000/02/02 07:29:48
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.5 2000/02/01 12:22:01 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("ox_help(0); ox_help(\"keyword\"); ox_grep(\"keyword\"); for help message ")$
 XM_debug=1$  XM_debug=1$
   
 /*&C-texi  /*&C-texi
Line 151  def ox_check_errors2(P) {
Line 151  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")$

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

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