[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.4 and 1.7

version 1.4, 2000/01/23 00:25:56 version 1.7, 2000/02/11 04:30:16
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/lib/xm,v 1.3 2000/01/16 06:28:00 takayama Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/lib/xm,v 1.6 2000/02/02 07:29:48 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("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 152  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.4  
changed lines
  Added in v.1.7

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