[BACK]Return to init-openxm.scm CVS log [TXT][DIR] Up to [local] / OpenXM / src / kxx

Diff for /OpenXM/src/kxx/init-openxm.scm between version 1.11 and 1.12

version 1.11, 2004/03/19 07:53:43 version 1.12, 2004/03/25 01:05:34
Line 1 
Line 1 
 ; $OpenXM: OpenXM/src/kxx/init-openxm.scm,v 1.10 2004/03/17 13:28:38 ohara Exp $  ; $OpenXM: OpenXM/src/kxx/init-openxm.scm,v 1.11 2004/03/19 07:53:43 ohara Exp $
   
 (define (openxm-eval t)  (define (openxm-eval t)
   (import-from (texmacs plugin plugin-cmd))    (import-from (texmacs plugin plugin-cmd))
Line 78 
Line 78 
         )))          )))
 )  )
   
   (define (openxm-serialize lan t)
     (import-from (texmacs plugin plugin-cmd))
     (with u (pre-serialize lan t)
       (with s (texmacs->verbatim (object->tree u))
         (string-append (string-replace s "\n" "\v") "\n")
         )))
   
 (plugin-configure openxm  (plugin-configure openxm
   (:require (url-exists-in-path? "openxm"))    (:require (url-exists-in-path? "openxm"))
   (:initialize (openxm-initialize))    (:initialize (openxm-initialize))
     (:serializer ,openxm-serialize)
   (:launch "exec openxm ox_texmacs")    (:launch "exec openxm ox_texmacs")
   (:session "OpenXM[asir,sm1]"))    (:session "OpenXM[asir,sm1]"))

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

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