Diff for /gforth/debugs.fs between versions 1.12 and 1.17

version 1.12, 2005/10/02 11:30:32 version 1.17, 2007/12/31 17:34:58
Line 1 Line 1
 \ Simple debugging aids  \ Simple debugging aids
   
 \ Copyright (C) 1995,1997,1999,2002,2003,2004 Free Software Foundation, Inc.  \ Copyright (C) 1995,1997,1999,2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 52  defer .debugline ( nfile nline -- ) \ gf Line 52  defer .debugline ( nfile nline -- ) \ gf
   
 ' (.debugline) IS .debugline  ' (.debugline) IS .debugline
   
   : .debugline-stderr ( nfile nline -- )
       ['] .debugline stderr outfile-execute ;
   
 :noname ( -- )  :noname ( -- )
     current-sourcepos .debugline ;      current-sourcepos .debugline-stderr ;
 :noname ( compilation  -- ; run-time  -- )  :noname ( compilation  -- ; run-time  -- )
     compile-sourcepos POSTPONE .debugline ;      compile-sourcepos POSTPONE .debugline-stderr ;
 interpret/compile: ~~ ( -- ) \ gforth tilde-tilde  interpret/compile: ~~ ( -- ) \ gforth tilde-tilde
 \G Prints the source code location of the @code{~~} and the stack  \G Prints the source code location of the @code{~~} and the stack
 \G contents with @code{.debugline}.  \G contents with @code{.debugline}.

Removed from v.1.12  
changed lines
  Added in v.1.17


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