Diff for /gforth/dis-gdb.fs between versions 1.3 and 1.4

version 1.3, 2004/06/15 09:37:17 version 1.4, 2004/08/23 14:03:52
Line 18 Line 18
 \ along with this program; if not, write to the Free Software  \ along with this program; if not, write to the Free Software
 \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.  \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
   
 : append-extend-string ( addr1 u1 addr2 u2 -- addr2 u1+u2 )  : append-extend-string ( addr1 u1 addr2 u2 -- addr3 u1+u2 )
     \ concatenate string1 and string2 with dynamic memory allocation      \ append string2 to string1 with dynamic memory reallocation.
     swap >r dup >r extend-mem ( to addr2 u1+u2 r: addr2 u2 )      swap >r dup >r extend-mem ( to addr3 u1+u2 r: addr2 u2 )
     rot r> r> rot rot chars move ;      rot r> r> rot rot chars move ;
   
 : disasm-gdb { addr u -- }  : disasm-gdb { addr u -- }

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


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