diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-11-13 23:58:11 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-11-13 23:58:11 +0000 |
commit | f774d187672a69f286bdeed6e45d09fd95f0792f (patch) | |
tree | 70110b3f981bfe95643981aaba517384e407a17b | |
parent | b7903d8dcc46e8c96fc4bb7ab7c971ec00872092 (diff) | |
download | pkgsrc-f774d187672a69f286bdeed6e45d09fd95f0792f.tar.gz |
Update to v0.5.0, requested by Jorge Acereda <al004046@alumail.uji.es>
User-visible changes between 0.4.0 and 0.5.0:
Changes in behaviour:
There are now two engines: the fast engine (gforth-fast) is at least
as fast as gforth in earlier releases; the debugging engine (gforth)
supports precise backtracing for signals (e.g., illegal memory
access), but is slower by a factor of 1-2.
Block files now start at block 0 by default (instead of block 1). If
you have block files around, prepend 1024 bytes to convert them, or
do a "1 OFFSET !" to establish the old behaviour.
Gforth now does not translate newlines to LFs on reading. Instead,
READ-LINE now interprets LF, CR, and CRLF as newlines. Newlines on
output are in the OSs favourite format.
SEE now disassembles primitives (or hex-DUMPs the code if no
disassembler is available).
>HEAD (aka >NAME) now returns 0 (instead of the nt of ???) on failure.
Syntax of prim changed: stack effects are now surrounded by
parentheses, tabs are insignificant.
Operating environment:
Gforth now produces a backtrace when catching an exception.
On platforms supporting the Unix 98 SA_SIGINFO semantics, you get more
precise error reports for SIGSEGV and SIGFPE (e.g., "stack
underflow" instead of "Invalid memory address").
Gforth now produces exit code 1 if there is an error (i.e., an
uncaught THROW) in batch processing.
You can use "gforthmi --application ..." to build an image that
processes the whole command-line when invoked directly (instead of
through gforth -i).
Ports:
AIX.
20% speedup on 604e under powerpc-unknown-linux-gnu,
19%-29% speedup on Celeron with gcc-2.95.
New words:
Missing ANS Forth words: EKEY EKEY? EKEY>CHAR
Timing words: CPUTIME UTIME
Vector arithmetic: V* FAXPY
FP comparison: F~ABS F~REL
Deferred words: <IS> [IS]
Nested number output: <<# #>>
Exception handling: TRY RECOVER ENDTRY
Directory handling: OPEN-DIR READ-DIR CLOSE-DIR FILENAME-MATCH
Other: ]L PUSH-ORDER
Miscellaneous:
Significant extensions to the manual (added an introduction, among
other things), many of them due to a new team member: Neal Crook.
Added assemblers and disassemblers for 386, Alpha, MIPS (thanks to
contributions by Andrew McKewan, Bernd Thallner, and Christian
Pirker). Contributions of assemblers and disassemblers for other
architectures are welcome.
-rw-r--r-- | lang/gforth/Makefile | 4 | ||||
-rw-r--r-- | lang/gforth/files/md5 | 5 | ||||
-rw-r--r-- | lang/gforth/files/patch-sum | 6 | ||||
-rw-r--r-- | lang/gforth/patches/patch-aa | 19 | ||||
-rw-r--r-- | lang/gforth/patches/patch-ab | 8 | ||||
-rw-r--r-- | lang/gforth/pkg/PLIST | 332 |
6 files changed, 201 insertions, 173 deletions
diff --git a/lang/gforth/Makefile b/lang/gforth/Makefile index 557052cb69b..6a39c3e2f31 100644 --- a/lang/gforth/Makefile +++ b/lang/gforth/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2000/05/09 23:36:43 itohy Exp $ +# $NetBSD: Makefile,v 1.7 2000/11/13 23:58:11 hubertf Exp $ -DISTNAME= gforth-0.4.0 +DISTNAME= gforth-0.5.0 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU:=gforth/} diff --git a/lang/gforth/files/md5 b/lang/gforth/files/md5 index 21c713f7642..514ba9a6d65 100644 --- a/lang/gforth/files/md5 +++ b/lang/gforth/files/md5 @@ -1,2 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 1999/04/10 13:56:57 simonb Exp $ -MD5 (gforth-0.4.0.tar.gz) = 62f860b32d886efce679f9369b74de15 +$NetBSD: md5,v 1.2 2000/11/13 23:58:11 hubertf Exp $ + +MD5 (gforth-0.5.0.tar.gz) = db16b64e9d63934bc4455e9b2aebbe13 diff --git a/lang/gforth/files/patch-sum b/lang/gforth/files/patch-sum index fa8e96742fa..c04be7a3598 100644 --- a/lang/gforth/files/patch-sum +++ b/lang/gforth/files/patch-sum @@ -1,5 +1,5 @@ -$NetBSD: patch-sum,v 1.3 2000/04/11 06:57:50 itohy Exp $ +$NetBSD: patch-sum,v 1.4 2000/11/13 23:58:11 hubertf Exp $ -MD5 (patch-aa) = e7456c7878452b2281044d00819f1ce2 -MD5 (patch-ab) = 3e1da92b3b58a90f84221639127660cb +MD5 (patch-aa) = 372dd7cbc2c9f3e3e97af1606a3d5b46 +MD5 (patch-ab) = 734a11e1ef8b2a80b1b2d15af7066587 MD5 (patch-ac) = b0d778549e13a0ce1528f0a9a5941806 diff --git a/lang/gforth/patches/patch-aa b/lang/gforth/patches/patch-aa index 438eaf90167..8de26b8c245 100644 --- a/lang/gforth/patches/patch-aa +++ b/lang/gforth/patches/patch-aa @@ -1,16 +1,19 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/04/10 13:56:57 simonb Exp $ +$NetBSD: patch-aa,v 1.2 2000/11/13 23:58:12 hubertf Exp $ ---- Makefile.in.orig Sun Dec 27 02:21:00 1998 -+++ Makefile.in Sat Apr 10 22:28:41 1999 -@@ -422,9 +422,9 @@ - install: gforth$(EXE) $(FORTH_SRC) $(kernel_fi) gforth.fi gforthmi doc/gforth.1 prim install.TAGS installdirs +--- Makefile.in.orig Sat Sep 23 20:21:57 2000 ++++ Makefile.in +@@ -461,11 +461,11 @@ touch $(siteforthdir)/siteinit.fs -$(RM) $(bindir)/gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforthmi + -$(RM) $(bindir)/gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE) - $(INSTALL_PROGRAM) -s gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) + $(INSTALL_PROGRAM) gforth$(EXE) $(bindir)/gforth-$(VERSION)$(EXE) - $(LN_S) $(bindir)/gforth-$(VERSION)$(EXE) $(bindir)/gforth$(EXE) + (cd $(bindir) && $(LN_S) gforth-$(VERSION)$(EXE) gforth$(EXE)) +- $(INSTALL_PROGRAM) -s gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE) ++ $(INSTALL_PROGRAM) gforth-fast$(EXE) $(bindir)/gforth-fast-$(VERSION)$(EXE) + (cd $(bindir) && $(LN_S) gforth-fast-$(VERSION)$(EXE) gforth-fast$(EXE)) - $(INSTALL_PROGRAM) gforthmi $(bindir)/gforthmi-$(VERSION) + $(BSD_INSTALL_SCRIPT) gforthmi $(bindir)/gforthmi-$(VERSION) - $(LN_S) $(bindir)/gforthmi-$(VERSION) $(bindir)/gforthmi + $(INSTALL_PROGRAM) gforth-ditc $(libdir)/gforth/$(VERSION) + (cd $(bindir) && $(LN_S) gforthmi-$(VERSION) gforthmi) -$(INSTALL_DATA) $(srcdir)/doc/gforth.1 $(man1dir) - -for i in $(srcdir)/doc/gforth.info*; do $(INSTALL_DATA) $$i $(infodir); done diff --git a/lang/gforth/patches/patch-ab b/lang/gforth/patches/patch-ab index d194c976bc1..93e6ad9b660 100644 --- a/lang/gforth/patches/patch-ab +++ b/lang/gforth/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.1 2000/04/11 06:54:46 itohy Exp $ +$NetBSD: patch-ab,v 1.2 2000/11/13 23:58:12 hubertf Exp $ ---- arch/m68k/machine.h.orig Sat Dec 19 19:22:27 1998 -+++ arch/m68k/machine.h Sun Apr 9 23:53:32 2000 -@@ -42,7 +42,16 @@ +--- arch/m68k/machine.h.orig Sat Sep 23 20:22:05 2000 ++++ arch/m68k/machine.h +@@ -44,7 +44,16 @@ */ #if defined(apollo) # define FLUSH_ICACHE(addr,size) cache_$clear() diff --git a/lang/gforth/pkg/PLIST b/lang/gforth/pkg/PLIST index 0f2feb59ff9..911290bd43a 100644 --- a/lang/gforth/pkg/PLIST +++ b/lang/gforth/pkg/PLIST @@ -1,11 +1,19 @@ -@comment $NetBSD: PLIST,v 1.4 2000/05/09 23:33:41 itohy Exp $ +@comment $NetBSD: PLIST,v 1.5 2000/11/13 23:58:12 hubertf Exp $ bin/${PKGNAME} bin/gforth -bin/gforthmi-0.4.0 +bin/gforth-fast +bin/gforth-fast-0.5.0 bin/gforthmi -@unexec install-info --delete %D/info/gforth.info %D/info/dir +bin/gforthmi-0.5.0 +@unexec install-info --delete --info-dir=%D/info %D/info/gforth.info info/gforth.info +@exec install-info --info-dir=%D/info %D/info/gforth.info info/gforth.info-1 +info/gforth.info-10 +info/gforth.info-11 +info/gforth.info-12 +info/gforth.info-13 +info/gforth.info-14 info/gforth.info-2 info/gforth.info-3 info/gforth.info-4 @@ -13,157 +21,173 @@ info/gforth.info-5 info/gforth.info-6 info/gforth.info-7 info/gforth.info-8 -@exec install-info %D/info/gforth.info %D/info/dir -lib/gforth/0.4.0/gforth.fi +info/gforth.info-9 +lib/gforth/0.5.0/gforth-ditc +lib/gforth/0.5.0/gforth.fi man/man1/gforth.1 share/emacs/site-lisp/gforth.el -@unexec cd %D/share && rmdir -p emacs/site-lisp; : -share/gforth/0.4.0/hash.fs -share/gforth/0.4.0/kernel/aliases0.fs -share/gforth/0.4.0/kernel/aliases.fs -share/gforth/0.4.0/kernel/args.fs -share/gforth/0.4.0/kernel/cond.fs -share/gforth/0.4.0/kernel/cond-old.fs -share/gforth/0.4.0/kernel/errore.fs -share/gforth/0.4.0/kernel/files.fs -share/gforth/0.4.0/kernel/require.fs -share/gforth/0.4.0/kernel/paths.fs -share/gforth/0.4.0/kernel/kernel.fs -share/gforth/0.4.0/kernel/main.fs -share/gforth/0.4.0/kernel/prim0.fs -share/gforth/0.4.0/kernel/special.fs -share/gforth/0.4.0/kernel/tools.fs -share/gforth/0.4.0/kernel/toolsext.fs -share/gforth/0.4.0/kernel/vars.fs -share/gforth/0.4.0/kernel/accept.fs -share/gforth/0.4.0/kernel/basics.fs -share/gforth/0.4.0/kernel/int.fs -share/gforth/0.4.0/kernel/comp.fs -share/gforth/0.4.0/kernel/io.fs -share/gforth/0.4.0/kernel/license.fs -share/gforth/0.4.0/kernel/nio.fs -share/gforth/0.4.0/kernel/saccept.fs -share/gforth/0.4.0/kernel/doers.fs -share/gforth/0.4.0/kernel/getdoers.fs -share/gforth/0.4.0/doc/makedoc.fs -share/gforth/0.4.0/asm/README -share/gforth/0.4.0/asm/bitmask.fs -share/gforth/0.4.0/asm/numref.fs -share/gforth/0.4.0/asm/basic.fs -share/gforth/0.4.0/asm/generic.fs -share/gforth/0.4.0/asm/target.fs -share/gforth/0.4.0/ec/README -share/gforth/0.4.0/ec/mirror.fs -share/gforth/0.4.0/ec/mirrors.fs -share/gforth/0.4.0/ec/shex.fs -share/gforth/0.4.0/ec/builttag.fs -share/gforth/0.4.0/ec/dotx.fs -share/gforth/0.4.0/ec/mirrored.fs -share/gforth/0.4.0/ec/nesting.fs -share/gforth/0.4.0/test/tester.fs -share/gforth/0.4.0/test/coretest.fs -share/gforth/0.4.0/test/postpone.fs -share/gforth/0.4.0/test/dbltest.fs -share/gforth/0.4.0/test/other.fs -share/gforth/0.4.0/test/checkans.fs -share/gforth/0.4.0/compat/README -share/gforth/0.4.0/compat/anslocal.fs -share/gforth/0.4.0/compat/assert.fs -share/gforth/0.4.0/compat/control.fs -share/gforth/0.4.0/compat/defer.fs -share/gforth/0.4.0/compat/exception.fs -share/gforth/0.4.0/compat/loops.fs -share/gforth/0.4.0/compat/required.fs -share/gforth/0.4.0/compat/struct.fs -share/gforth/0.4.0/compat/vocabulary.fs -share/gforth/0.4.0/chains.fs -share/gforth/0.4.0/cross.fs -share/gforth/0.4.0/search.fs -share/gforth/0.4.0/assert.fs -share/gforth/0.4.0/blocked.fb -share/gforth/0.4.0/blocks.fs -share/gforth/0.4.0/bufio.fs -share/gforth/0.4.0/debug.fs -share/gforth/0.4.0/debugs.fs -share/gforth/0.4.0/savesys.fs -share/gforth/0.4.0/environ.fs -share/gforth/0.4.0/errors.fs -share/gforth/0.4.0/extend.fs -share/gforth/0.4.0/float.fs -share/gforth/0.4.0/glocals.fs -share/gforth/0.4.0/history.fs -share/gforth/0.4.0/intcomp.fs -share/gforth/0.4.0/locals.fs -share/gforth/0.4.0/look.fs -share/gforth/0.4.0/see.fs -share/gforth/0.4.0/see-ext.fs -share/gforth/0.4.0/source.fs -share/gforth/0.4.0/startup.fs -share/gforth/0.4.0/struct.fs -share/gforth/0.4.0/stuff.fs -share/gforth/0.4.0/tasker.fs -share/gforth/0.4.0/termsize.fs -share/gforth/0.4.0/vt100.fs -share/gforth/0.4.0/vt100key.fs -share/gforth/0.4.0/wordinfo.fs -share/gforth/0.4.0/lib.fs -share/gforth/0.4.0/sieve.fs -share/gforth/0.4.0/add.fs -share/gforth/0.4.0/ans-report.fs -share/gforth/0.4.0/ansi.fs -share/gforth/0.4.0/answords.fs -share/gforth/0.4.0/code.fs -share/gforth/0.4.0/colorize.fs -share/gforth/0.4.0/comp-i.fs -share/gforth/0.4.0/doskey.fs -share/gforth/0.4.0/ds2texi.fs -share/gforth/0.4.0/envos.fs -share/gforth/0.4.0/envos.dos -share/gforth/0.4.0/envos.os2 -share/gforth/0.4.0/etags.fs -share/gforth/0.4.0/filedump.fs -share/gforth/0.4.0/fi2c.fs -share/gforth/0.4.0/glosgen.fs -share/gforth/0.4.0/gray.fs -share/gforth/0.4.0/mach16b.fs -share/gforth/0.4.0/mach16l.fs -share/gforth/0.4.0/mach32b.fs -share/gforth/0.4.0/mach32l.fs -share/gforth/0.4.0/mach64b.fs -share/gforth/0.4.0/mach64l.fs -share/gforth/0.4.0/machpc.fs -share/gforth/0.4.0/more.fs -share/gforth/0.4.0/other.fs -share/gforth/0.4.0/prims2x.fs -share/gforth/0.4.0/random.fs -share/gforth/0.4.0/table.fs -share/gforth/0.4.0/tt.fs -share/gforth/0.4.0/sokoban.fs -share/gforth/0.4.0/unbuffered.fs -share/gforth/0.4.0/wordsets.fs -share/gforth/0.4.0/bubble.fs -share/gforth/0.4.0/siev.fs -share/gforth/0.4.0/matrix.fs -share/gforth/0.4.0/fib.fs -share/gforth/0.4.0/oof.fs -share/gforth/0.4.0/oofsampl.fs -share/gforth/0.4.0/prim -share/gforth/0.4.0/objects.fs -share/gforth/0.4.0/objexamp.fs -share/gforth/0.4.0/mini-oof.fs -share/gforth/0.4.0/moof-exm.fs -share/gforth/0.4.0/@KERNEL_FI@ -share/gforth/0.4.0/TAGS +share/gforth/0.5.0/TAGS +share/gforth/0.5.0/add.fs +share/gforth/0.5.0/ans-report.fs +share/gforth/0.5.0/ansi.fs +share/gforth/0.5.0/answords.fs +share/gforth/0.5.0/arch/386/asm.fs +share/gforth/0.5.0/arch/386/disasm.fs +share/gforth/0.5.0/arch/alpha/asm.fs +share/gforth/0.5.0/arch/alpha/disasm.fs +share/gforth/0.5.0/arch/mips/asm.fs +share/gforth/0.5.0/arch/mips/disasm.fs +share/gforth/0.5.0/arch/mips/insts.fs +share/gforth/0.5.0/asm/README +share/gforth/0.5.0/asm/basic.fs +share/gforth/0.5.0/asm/bitmask.fs +share/gforth/0.5.0/asm/generic.fs +share/gforth/0.5.0/asm/numref.fs +share/gforth/0.5.0/asm/target.fs +share/gforth/0.5.0/assert.fs +share/gforth/0.5.0/backtrac.fs +share/gforth/0.5.0/blocked.fb +share/gforth/0.5.0/blocks.fs +share/gforth/0.5.0/bubble.fs +share/gforth/0.5.0/bufio.fs +share/gforth/0.5.0/chains.fs +share/gforth/0.5.0/code.fs +share/gforth/0.5.0/colorize.fs +share/gforth/0.5.0/comp-i.fs +share/gforth/0.5.0/compat/README +share/gforth/0.5.0/compat/anslocal.fs +share/gforth/0.5.0/compat/assert.fs +share/gforth/0.5.0/compat/control.fs +share/gforth/0.5.0/compat/defer.fs +share/gforth/0.5.0/compat/exception.fs +share/gforth/0.5.0/compat/loops.fs +share/gforth/0.5.0/compat/required.fs +share/gforth/0.5.0/compat/struct.fs +share/gforth/0.5.0/compat/vocabulary.fs +share/gforth/0.5.0/cross.fs +share/gforth/0.5.0/debug.fs +share/gforth/0.5.0/debugs.fs +share/gforth/0.5.0/doc/makedoc.fs +share/gforth/0.5.0/doskey.fs +share/gforth/0.5.0/ds2texi.fs +share/gforth/0.5.0/ec/README +share/gforth/0.5.0/ec/builttag.fs +share/gforth/0.5.0/ec/dotx.fs +share/gforth/0.5.0/ec/mirror.fs +share/gforth/0.5.0/ec/nesting.fs +share/gforth/0.5.0/ec/shex.fs +share/gforth/0.5.0/ekey.fs +share/gforth/0.5.0/environ.fs +share/gforth/0.5.0/envos.dos +share/gforth/0.5.0/envos.fs +share/gforth/0.5.0/envos.os2 +share/gforth/0.5.0/errors.fs +share/gforth/0.5.0/etags.fs +share/gforth/0.5.0/exboot.fs +share/gforth/0.5.0/except.fs +share/gforth/0.5.0/extend.fs +share/gforth/0.5.0/fi2c.fs +share/gforth/0.5.0/fib.fs +share/gforth/0.5.0/filedump.fs +share/gforth/0.5.0/float.fs +share/gforth/0.5.0/glocals.fs +share/gforth/0.5.0/glosgen.fs +share/gforth/0.5.0/gray.fs +share/gforth/0.5.0/hash.fs +share/gforth/0.5.0/history.fs +share/gforth/0.5.0/httpd.fs +share/gforth/0.5.0/intcomp.fs +share/gforth/0.5.0/kernel/accept.fs +share/gforth/0.5.0/kernel/aliases.fs +share/gforth/0.5.0/kernel/aliases0.fs +share/gforth/0.5.0/kernel/args.fs +share/gforth/0.5.0/kernel/basics.fs +share/gforth/0.5.0/kernel/cbr.fs +share/gforth/0.5.0/kernel/cloop.fs +share/gforth/0.5.0/kernel/comp.fs +share/gforth/0.5.0/kernel/cond-old.fs +share/gforth/0.5.0/kernel/cond.fs +share/gforth/0.5.0/kernel/doers.fs +share/gforth/0.5.0/kernel/errore.fs +share/gforth/0.5.0/kernel/files.fs +share/gforth/0.5.0/kernel/getdoers.fs +share/gforth/0.5.0/kernel/int.fs +share/gforth/0.5.0/kernel/io.fs +share/gforth/0.5.0/kernel/kernel.fs +share/gforth/0.5.0/kernel/license.fs +share/gforth/0.5.0/kernel/main.fs +share/gforth/0.5.0/kernel/nio.fs +share/gforth/0.5.0/kernel/pass.fs +share/gforth/0.5.0/kernel/paths.fs +share/gforth/0.5.0/kernel/prim0.fs +share/gforth/0.5.0/kernel/quotes.fs +share/gforth/0.5.0/kernel/require.fs +share/gforth/0.5.0/kernel/saccept.fs +share/gforth/0.5.0/kernel/tools.fs +share/gforth/0.5.0/kernel/toolsext.fs +share/gforth/0.5.0/kernel/vars.fs +share/gforth/0.5.0/@KERNEL_FI@ +share/gforth/0.5.0/lib.fs +share/gforth/0.5.0/locals.fs +share/gforth/0.5.0/look.fs +share/gforth/0.5.0/mach16b.fs +share/gforth/0.5.0/mach16l.fs +share/gforth/0.5.0/mach32b.fs +share/gforth/0.5.0/mach32l.fs +share/gforth/0.5.0/mach64b.fs +share/gforth/0.5.0/mach64l.fs +share/gforth/0.5.0/machpc.fs +share/gforth/0.5.0/make-app.fs +share/gforth/0.5.0/matrix.fs +share/gforth/0.5.0/mini-oof.fs +share/gforth/0.5.0/moof-exm.fs +share/gforth/0.5.0/moofglos.fs +share/gforth/0.5.0/more.fs +share/gforth/0.5.0/objects.fs +share/gforth/0.5.0/objexamp.fs +share/gforth/0.5.0/oof.fs +share/gforth/0.5.0/oofsampl.fs +share/gforth/0.5.0/other.fs +share/gforth/0.5.0/prim +share/gforth/0.5.0/prims2x.fs +share/gforth/0.5.0/random.fs +share/gforth/0.5.0/savesys.fs +share/gforth/0.5.0/search.fs +share/gforth/0.5.0/see-ext.fs +share/gforth/0.5.0/see.fs +share/gforth/0.5.0/siev.fs +share/gforth/0.5.0/sieve.fs +share/gforth/0.5.0/sokoban.fs +share/gforth/0.5.0/source.fs +share/gforth/0.5.0/startup.fs +share/gforth/0.5.0/string.fs +share/gforth/0.5.0/struct.fs +share/gforth/0.5.0/stuff.fs +share/gforth/0.5.0/table.fs +share/gforth/0.5.0/tasker.fs +share/gforth/0.5.0/termsize.fs +share/gforth/0.5.0/test/checkans.fs +share/gforth/0.5.0/test/coretest.fs +share/gforth/0.5.0/test/dbltest.fs +share/gforth/0.5.0/test/other.fs +share/gforth/0.5.0/test/postpone.fs +share/gforth/0.5.0/test/tester.fs +share/gforth/0.5.0/tt.fs +share/gforth/0.5.0/unbuffer.fs +share/gforth/0.5.0/vt100.fs +share/gforth/0.5.0/vt100key.fs +share/gforth/0.5.0/wordinfo.fs +share/gforth/0.5.0/wordsets.fs share/gforth/site-forth/siteinit.fs -@dirrm lib/gforth/site-forth -@dirrm lib/gforth/0.4.0 -@dirrm lib/gforth -@dirrm share/gforth/site-forth -@dirrm share/gforth/0.4.0/compat -@dirrm share/gforth/0.4.0/test -@dirrm share/gforth/0.4.0/ec -@dirrm share/gforth/0.4.0/asm -@dirrm share/gforth/0.4.0/doc -@dirrm share/gforth/0.4.0/kernel -@dirrm share/gforth/0.4.0 -@dirrm share/gforth +@dirrm share/gforth/0.5.0/test +@dirrm share/gforth/0.5.0/kernel +@dirrm share/gforth/0.5.0/ec +@dirrm share/gforth/0.5.0/doc +@dirrm share/gforth/0.5.0/compat +@dirrm share/gforth/0.5.0/asm +@dirrm share/gforth/0.5.0/arch/mips +@dirrm share/gforth/0.5.0/arch/alpha +@dirrm share/gforth/0.5.0/arch/386 +@dirrm share/gforth/0.5.0 +@dirrm share/emacs/site-lisp +@dirrm lib/gforth/0.5.0 |