Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.forth > #20807
| From | mhx@iae.nl (Marcel Hendrix) |
|---|---|
| Subject | Re: Difficulty with Brad Rodriguez' screenful |
| Newsgroups | comp.lang.forth |
| Message-ID | <97711217008434@frunobulax.edu> (permalink) |
| Date | 2013-03-18 23:32 +0200 |
| References | <97e609e5-6b2c-4b0b-8270-fca9d5bb9fe3@googlegroups.com> |
| Organization | Wanadoo |
Eduardo Costa <edu500ac@gmail.com> writes Re: Difficulty with Brad Rodriguez' screenful
> Yes, your new program is working with gforth, and bigforth. It is not working
> with SP-Forth. Interesting enough: SP-Forth works perfectly well with the
> older version. I mean, it works with the version that removes the return
> address from the return stack.
That has nothing to do with it.
The problem with SP-Forth is that it is too minimalistic (not knowing quite
common but non-standard words), and that it has a very weird
SMUDGE/-SMUDGE/REVEAL/RECURSIVE definition.
> BTW, SP-Forth is quite small, and very fast. The only problem is that it is
> a source distribution. However, the bootstrap is straightforward. All you
> have to do is to enter the src directory and type make (in Linux), or compile.bat
> (in Windows). It has a small bootstrap compiler, that builds a basic system.
> Then you can add other words, and features (like case insensitivity).
I found it extremely painful to work with (Russian messages, doesn't seem to
like tabs). But it has interesting libraries (if you can untangle them).
[..]
The version below works for SP-Forth and *should* work for all the others
that worked before (I didn't retest them). This exercise taught me how
big the differences between Forths still are. It is absolutely no fun to
write portable programs.
I think I have quite conclusively shown that return stack horrors are not
needed to implement the classic sources from Forth's golden age.
-marcel
-- -------------------------------
\ SP-forth, use an .ini file with
\ WARNING 0!
\
\ REQUIRE QuickSWL ~pinka\spf\quick-swl3.f
\ REQUIRE HELP lib\ext\help.f
\ STARTLOG
\
\ -1 WARNING !
\
\ REQUIRE CASE-INS lib/ext/caseins.f
\ REQUIRE DEFER lib/include/defer.f
\ INCLUDE lib/include/ansi.f
\ INCLUDE lib/ext/disasm.f
[defined] -bnf [IF] -bnf [THEN] MARKER -bnf
[undefined] PARSE-NAME
[IF]
: isspace? ( c -- f )
bl 1+ u< ;
: isnotspace? ( c -- f )
isspace? 0= ;
: xt-skip ( addr1 n1 xt -- addr2 n2 ) \ gforth
\ skip all characters satisfying xt ( c -- f )
>r
BEGIN
dup
WHILE
over c@ r@ execute
WHILE
1 /string
REPEAT THEN
r> drop ;
: parse-name ( "name" -- c-addr u )
source >in @ /string
['] isspace? xt-skip over >r
['] isnotspace? xt-skip ( end-word restlen r: start-word )
2dup 1 min + source drop - >in !
drop r> tuck - ;
[THEN]
: refilling-parse-name ( -- old->in c-addr u )
BEGIN
>IN @ PARSE-NAME DUP 0=
WHILE
2DROP DROP REFILL 0= -39 AND THROW
REPEAT ;
\ switch into postpone state
: ]] ( -- )
BEGIN
refilling-parse-name S" [[" COMPARE
WHILE
>IN ! POSTPONE POSTPONE
REPEAT DROP ; IMMEDIATE
[undefined] <= [IF] : <= > 0= ; [THEN] \ SP-Forth
[undefined] >= [IF] : >= < 0= ; [THEN] \ SP-Forth
[defined] APPEND [IF] : +PLACE APPEND ;
: RECURSIVE -SMUDGE ; IMMEDIATE \ SwiftForth
[THEN]
[defined] C-SMUDGE [IF] : RECURSIVE SMUDGE LAST @ 1+ C@ C-SMUDGE C! ; IMMEDIATE [THEN] \ SP-Forth
[undefined] RECURSIVE [IF] : RECURSIVE REVEAL ; IMMEDIATE [THEN] \ Win32Forth
CREATE text 256 CHARS ALLOT
: >> ( c-addr u -- ) text +PLACE ;
: .text ( -- ) text COUNT TYPE ;
0 VALUE success
: setOUT ( u -- ) text C! ; : getOUT ( -- u ) text C@ ;
: setIN ( u -- ) >IN ! ; : getIN ( -- u ) >IN @ ;
: OK! TRUE TO success ;
: | ]] success IF R> R> DROP R> DROP >R EXIT ELSE R> R> R> 2DUP >R >R setIN setOUT OK! >R THEN [[ ; IMMEDIATE
: <bnf ]] success IF R> getIN >R getOUT >R >R ELSE EXIT THEN [[ ;
: bnf> ]] success IF R> 2R> 2DROP >R ELSE R> R> setOUT R> setIN >R THEN [[ ;
: bnf: : POSTPONE RECURSIVE <bnf ;
: ;bnf bnf> POSTPONE ; ; IMMEDIATE
: @token ( -- n ) SOURCE >IN @ <= IF DROP 0 EXIT THEN >IN @ + C@ ;
: +token ( f -- ) IF 1 >IN +! THEN ;
: =token ( n -- ) success IF @token = DUP TO success +token ELSE DROP THEN ;
: token ( n -- ) CREATE C, DOES> ( -- addr ) C@ =token ;
: <EOL> >IN @ SOURCE NIP >= TO success ;
CHAR + token <+> CHAR - token <-> CHAR * token <*> CHAR / token </>
CHAR ^ token <^> CHAR ( token <(> CHAR ) token <)>
CHAR 0 token <0> CHAR 1 token <1> CHAR 2 token <2> CHAR 3 token <3>
CHAR 4 token <4> CHAR 5 token <5> CHAR 6 token <6> CHAR 7 token <7>
CHAR 8 token <8> CHAR 9 token <9>
( example # ) 3
DUP 1 =
[IF] \ BNF Parser Example #1 - pattern recognition.
\ from Aho & Ullman, Principles of Compiler Design, p.137
\ this grammar recognizes strings having balanced parentheses
bnf: <CHAR> @token DUP [char] * [char] ~ CHAR+ WITHIN SWAP 1 27 WITHIN OR DUP TO success +token ;bnf
bnf: <S> <(> <S> <)> <S> | <CHAR> <S> | ;bnf
: parser OK! <S> <EOL>
CR success IF ." Successful " ELSE ." Failed " THEN ;
[THEN]
DUP 2 =
[IF] \ BNF Parser Example #2 - infix notation
DEFER expr
bnf: <DIGIT> <0> | <1> | <2> | <3> | <4> | <5> | <6> | <7> | <8> | <9> ;bnf
bnf: <NUMBER> <DIGIT> <NUMBER> | <DIGIT> ;bnf
bnf: <ELEMENT> <(> expr <)> | <NUMBER> ;bnf
bnf: <PRIMARY> <-> <PRIMARY> | <ELEMENT> ;bnf
bnf: <FACTOR> <PRIMARY> <^> <FACTOR> | <PRIMARY> ;bnf
bnf: <T'> <*> <FACTOR> <T'> | </> <FACTOR> <T'> | ;bnf
bnf: <TERM> <FACTOR> <T'> ;bnf
bnf: <E'> <+> <TERM> <E'> | <-> <TERM> <E'> | ;bnf
bnf: <EXPRESSION> <TERM> <E'> ;bnf ' <EXPRESSION> IS expr
: parser OK! <EXPRESSION> <EOL>
CR success IF ." Successful " ELSE ." Failed " THEN ;
[THEN]
3 =
[IF] \ BNF Example #3 code generation
VARIABLE tmpc
DEFER expr
bnf: {DIGIT} <0> | <1> | <2> | <3> | <4> | <5> | <6> | <7> | <8> | <9> ;bnf
bnf: <DIGIT> @token tmpc C! {DIGIT} tmpc 1 >> ;bnf
bnf: <NUMBER> <DIGIT> <NUMBER> | <DIGIT> ;bnf
bnf: <ELEMENT> <(> expr <)> | <NUMBER> S" " >> ;bnf
bnf: <PRIMARY> <-> <PRIMARY> S" MINUS " >> | <ELEMENT> ;bnf
bnf: <FACTOR> <PRIMARY> <^> <FACTOR> S" POWER " >> | <PRIMARY> ;bnf
bnf: <T'> <*> <FACTOR> S" * " >> <T'> | </> <FACTOR> S" / " >> <T'> | ;bnf
bnf: <TERM> <FACTOR> <T'> ;bnf
bnf: <E'> <+> <TERM> S" + " >> <E'> | <-> <TERM> S" - " >> <E'> | ;bnf
bnf: <EXPRESSION> <TERM> <E'> ;bnf ' <EXPRESSION> IS expr
: parser text OFF OK! <EXPRESSION> <EOL>
CR success IF .text ELSE ." Failed" THEN ;
[THEN]
\ SP-FORTH - ANS FORTH 94 for Win95/98/Me/NT/2k/XP/Vista
\ Open source project at http://spf.sf.net
\ Russian FIG at http://www.forth.org.ru ; Started by A.Cherezov
\ Version 4.20 Build 001 at 21.Jan.2009
\
\ Type HELP for help
\
\ Loading Intel Pentium MMX disassembler... Ok
\ include bnf.f
\ Ok
\ parser 3*2+55
\
\ Successful Ok
\ parser 3*2^3+55/11
\
\ Successful Ok
\ parser 3*2^3+55/11a
\
\ Failed parser 3*2^3+55/11a
\ ^ -2003 WORD OR FILE NOT FOUND
\ include bnf.f
\ Ok
\ parser 3*2^3+55/11
\
\ 3 2 3 POWER * 55 11 / + Ok
\ EOF
Back to comp.lang.forth | Previous | Next — Previous in thread | Next in thread | Find similar
Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-15 07:10 -0700
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-15 17:06 +0000
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-15 11:27 -0700
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-15 13:06 -0700
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-15 13:43 -0700
Re: Difficulty with Brad Rodriguez' screenful "Elizabeth D. Rather" <erather@forth.com> - 2013-03-15 12:17 -1000
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-16 13:25 -0700
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-17 00:18 +0200
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-17 02:13 +0100
Re: Difficulty with Brad Rodriguez' screenful "Elizabeth D. Rather" <erather@forth.com> - 2013-03-16 15:29 -1000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-18 02:03 +0100
Re: Difficulty with Brad Rodriguez' screenful "Elizabeth D. Rather" <erather@forth.com> - 2013-03-17 15:23 -1000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-18 04:16 +0100
Re: Difficulty with Brad Rodriguez' screenful "Elizabeth D. Rather" <erather@forth.com> - 2013-03-17 18:20 -1000
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-18 13:07 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-18 21:45 +0100
Re: Difficulty with Brad Rodriguez' screenful Elizabeth D Rather <erather@forth.com> - 2013-03-18 12:13 -1000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 03:46 +0100
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-19 09:42 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 17:04 +0100
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-19 17:54 +0000
Re: Difficulty with Brad Rodriguez' screenful Brad Eckert <hwfwguy@gmail.com> - 2013-03-19 13:30 -0700
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 22:33 +0100
Re: Difficulty with Brad Rodriguez' screenful albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-03-19 13:03 +0000
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-19 14:56 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 21:55 +0100
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-19 14:16 -0700
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 02:09 +0100
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 20:35 +0100
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-19 09:52 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 18:56 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-19 13:18 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 22:37 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 03:33 -0500
Re: Difficulty with Brad Rodriguez' screenful "Rod Pemberton" <do_not_have@notemailnotq.cpm> - 2013-03-20 05:30 -0400
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-18 11:28 -0500
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-18 15:39 -0700
Re: Difficulty with Brad Rodriguez' screenful albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-03-19 13:07 +0000
Re: Difficulty with Brad Rodriguez' screenful m.a.m.hendrix@tue.nl - 2013-03-19 06:58 -0700
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 03:05 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-19 05:27 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 19:24 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 03:42 -0500
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 03:54 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 17:49 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 12:51 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 20:25 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-21 04:31 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-21 16:31 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-21 14:48 -0500
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-21 18:07 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-21 14:49 -0500
Re: Difficulty with Brad Rodriguez' screenful Coos Haak <chforth@hccnet.nl> - 2013-03-22 00:07 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-21 18:31 -0500
Re: Difficulty with Brad Rodriguez' screenful Coos Haak <chforth@hccnet.nl> - 2013-03-22 00:48 +0100
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-22 01:49 +0100
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-27 17:30 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-22 03:57 -0500
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-22 03:39 -0700
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-22 09:03 -0500
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-23 08:13 -0700
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-23 12:39 -0500
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-23 14:19 -0500
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-23 13:01 -0700
Re: Difficulty with Brad Rodriguez' screenful Brad Eckert <hwfwguy@gmail.com> - 2013-03-22 08:13 -0700
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-22 14:44 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-22 10:34 -0500
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-22 15:39 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-22 20:38 +0100
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-22 20:54 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-22 12:27 -0500
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-22 17:38 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-22 13:48 -0500
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-23 11:53 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-24 01:46 +0100
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-27 17:04 +0000
Re: Difficulty with Brad Rodriguez' screenful Brad Eckert <hwfwguy@gmail.com> - 2013-03-25 10:06 -0700
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-19 16:05 +0000
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-19 12:32 -0700
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-18 18:28 +0000
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-18 12:40 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-18 17:23 +0100
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-18 17:35 +0000
Re: Difficulty with Brad Rodriguez' screenful Brad Eckert <hwfwguy@gmail.com> - 2013-03-18 11:02 -0700
Re: Difficulty with Brad Rodriguez' screenful "WJ" <w_a_x_man@yahoo.com> - 2013-03-19 03:25 +0000
Re: Difficulty with Brad Rodriguez' screenful albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-03-18 19:35 +0000
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-18 18:17 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 03:29 +0100
Re: Difficulty with Brad Rodriguez' screenful Paul Rubin <no.email@nospam.invalid> - 2013-03-19 00:06 -0700
Re: Difficulty with Brad Rodriguez' screenful Paul Rubin <no.email@nospam.invalid> - 2013-03-19 00:11 -0700
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 16:16 +0100
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-19 15:06 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-19 22:27 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 03:49 -0500
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-20 11:09 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 10:25 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 18:08 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-20 13:04 -0500
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 20:12 +0100
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-21 04:39 -0500
Re: Difficulty with Brad Rodriguez' screenful albert@spenarnc.xs4all.nl (Albert van der Horst) - 2013-03-20 19:22 +0000
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-30 17:35 +0000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-03-31 08:51 -0500
Re: Difficulty with Brad Rodriguez' screenful Alex McDonald <blog@rivadpm.com> - 2013-03-20 10:27 -0700
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-20 12:03 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-20 18:47 +0100
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-03-30 16:40 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-04-01 02:12 +0200
Re: Difficulty with Brad Rodriguez' screenful anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2013-04-01 16:58 +0000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-04-02 04:20 +0200
Re: Difficulty with Brad Rodriguez' screenful "Elizabeth D. Rather" <erather@forth.com> - 2013-04-01 16:39 -1000
Re: Difficulty with Brad Rodriguez' screenful Andrew Haley <andrew29@littlepinkcloud.invalid> - 2013-04-02 04:17 -0500
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-16 22:27 -0700
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-17 10:10 +0200
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-17 18:15 +0200
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-17 13:00 -0700
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-17 23:34 +0200
Re: Difficulty with Brad Rodriguez' screenful Eduardo Costa <edu500ac@gmail.com> - 2013-03-17 16:44 -0700
Re: Difficulty with Brad Rodriguez' screenful "WJ" <w_a_x_man@yahoo.com> - 2013-03-17 23:53 +0000
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-18 23:32 +0200
Re: Difficulty with Brad Rodriguez' screenful Lars Brinkhoff <lars.spam@nocrew.org> - 2013-03-19 08:12 +0100
Re: Difficulty with Brad Rodriguez' screenful m.a.m.hendrix@tue.nl - 2013-03-19 00:33 -0700
Re: Difficulty with Brad Rodriguez' screenful Lars Brinkhoff <lars.spam@nocrew.org> - 2013-03-19 09:39 +0100
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-19 21:11 +0200
Re: Difficulty with Brad Rodriguez' screenful Elizabeth D Rather <erather@forth.com> - 2013-03-19 10:30 -1000
Re: Difficulty with Brad Rodriguez' screenful Roelf Toxopeus <rt4all@notthis.hetnet.nl> - 2013-03-19 22:31 +0100
Re: Difficulty with Brad Rodriguez' screenful Elizabeth D Rather <erather@forth.com> - 2013-03-19 12:09 -1000
Re: Difficulty with Brad Rodriguez' screenful Bernd Paysan <bernd.paysan@gmx.de> - 2013-03-18 19:23 +0100
Re: Difficulty with Brad Rodriguez' screenful stephenXXX@mpeforth.com (Stephen Pelc) - 2013-03-16 06:34 +0000
Re: Difficulty with Brad Rodriguez' screenful junnia@gmail.com - 2013-03-19 07:45 -0700
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-19 21:38 +0200
Re: Difficulty with Brad Rodriguez' screenful mhx@iae.nl (Marcel Hendrix) - 2013-03-23 01:31 +0200
csiph-web