Diff for /gforth/ds2texi.fs between versions 1.21 and 1.23

version 1.21, 1998/12/13 23:29:58 version 1.23, 2000/09/23 15:05:59
Line 1 Line 1
 \ documentation source to texi format converter  \ documentation source to texi format converter
   
 \ Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.  \ Copyright (C) 1995,1996,1997,1998,1999 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 133  create description-buffer 4096 chars all Line 133  create description-buffer 4096 chars all
     ." @cindex "      ." @cindex "
     ." @code{" r@ doc-name 2@ typetexi ." }"      ." @code{" r@ doc-name 2@ typetexi ." }"
     cr      cr
       r@ doc-name 2@ drop c@ [char] : <> if
           \ cut out words starting with :, info-lookup cannot handle them
           \ !! deal with : by replacing it here and in info-lookup?
           ." @kindex "
           r@ doc-name 2@ typetexi
           cr
       endif
     ." @format" cr      ." @format" cr
     ." @code{" r@ doc-name 2@ typetexi ." }       "      ." @code{" r@ doc-name 2@ typetexi ." }       "
     ." @i{" r@ doc-stack-effect 2@ type ." }       "      ." @i{" r@ doc-stack-effect 2@ type ." }       "

Removed from v.1.21  
changed lines
  Added in v.1.23


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