Diff for /gforth/ds2texi.fs between versions 1.3 and 1.4

version 1.3, 1995/01/10 18:57:41 version 1.4, 1995/03/13 09:17:25
Line 24  struct Line 24  struct
     2 cells: field doc-description      2 cells: field doc-description
 end-struct doc-entry  end-struct doc-entry
   
   create description-buffer 4096 chars allot
   
   : get-description ( -- addr u )
       description-buffer
       begin
           refill
       while
           source nip
       while
           source swap >r 2dup r> -rot cmove
           chars +
           #lf over c! char+
       repeat then
       description-buffer tuck - ;
   
   : make-doc ( -- )
       get-current documentation set-current
       create
           last @ name>string 2,           \ name
           [char] ) parse save-string 2,   \ stack-effect
           bl parse-word save-string 2,    \ wordset
           bl parse-word dup               \ pronounciation
           if
               save-string
           else
               2drop last @ name>string
           endif
           2,
           get-description save-string 2,
       set-current ;
   
 : emittexi ( c -- )  : emittexi ( c -- )
     >r      >r
     s" @{}" r@ scan 0<>      s" @{}" r@ scan 0<>
Line 103  create docline doclinelength chars allot Line 134  create docline doclinelength chars allot
 script? [IF]  script? [IF]
 include prims2x.fs  include prims2x.fs
 s" primitives.b" ' register-doc process-file  s" primitives.b" ' register-doc process-file
   require doc.fs
 s" gforth.ds" r/o open-file throw ds2texi bye  s" gforth.ds" r/o open-file throw ds2texi bye
 [THEN]  [THEN]

Removed from v.1.3  
changed lines
  Added in v.1.4


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