Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

You're dead, Jim. -- McCoy, "Amok Time", stardate 3372.7


devel / comp.lang.forth / bugs in SwiftForth

SubjectAuthor
* bugs in SwiftForthHugh Aguilar
+* Re: bugs in SwiftForthnone
|+* Re: bugs in SwiftForthdxforth
||`* Re: bugs in SwiftForthnone
|| `- Re: bugs in SwiftForthdxforth
|+- bug in VFX? (was: bugs in SwiftForth)Anton Ertl
|+* Re: bugs in SwiftForthnone
||`* Re: bugs in VFXHugh Aguilar
|| `- Re: bugs in VFXKerr-Mudd, John
|`- Re: bugs in SwiftForthJach Feng
`* Re: bugs in SwiftForthNN
 `- Re: bugs in SwiftForthHugh Aguilar

1
bugs in SwiftForth

<6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21943&group=comp.lang.forth#21943

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:ac8:4d47:0:b0:3a5:46b0:ffec with SMTP id x7-20020ac84d47000000b003a546b0ffecmr4030054qtv.306.1673492687022;
Wed, 11 Jan 2023 19:04:47 -0800 (PST)
X-Received: by 2002:a05:622a:400c:b0:3a8:27db:48b2 with SMTP id
cf12-20020a05622a400c00b003a827db48b2mr3919166qtb.588.1673492686832; Wed, 11
Jan 2023 19:04:46 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Wed, 11 Jan 2023 19:04:46 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=63.158.165.131; posting-account=OxDKOgoAAADW0cxAqHqpN1zqeCoSsDap
NNTP-Posting-Host: 63.158.165.131
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
Subject: bugs in SwiftForth
From: hughagui...@gmail.com (Hugh Aguilar)
Injection-Date: Thu, 12 Jan 2023 03:04:47 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 3055
 by: Hugh Aguilar - Thu, 12 Jan 2023 03:04 UTC

I think that Stephen Pelc introduced bugs into the latest VFX versions
for the purpose of preventing my novice package from working.
Specifically, LIT, now fails. This is just ANS-Forth code though, and
it has been working for the last 10 years on all tested ANS-Forth systems.
These bugs are in both the 32-bit and 64-bit VFX releases.
Here is some test code:
------------------------------------------------------------------------------------------
: lit, ( val -- ) \ runtime: -- val
postpone literal ;

: maybe
cr
: 1 . .s
5 lit, 2 . .s
postpone ; 3 . .s
;

: fails
cr
: 1 . .s
postpone if 2 . .s
5 lit, 3 . .s
postpone then 4 . .s
postpone ; 5 . .s
;

: works
cr
: 1 . .s
postpone if 2 . .s
5 postpone literal 3 . .s
postpone then 4 . .s
postpone ; 5 . .s
;
------------------------------------------------------------------------------------------

This is what happens:
------------------------------------------------------------------------------------------
empty ok
include "C:\Users\Hugh Aguilar\Desktop\MSP430\test.4th"
Including C:\Users\Hugh Aguilar\Desktop\MSP430\test.4th ok
maybe mmm
1
DATA STACK
empty stack
2
DATA STACK
empty stack
3
DATA STACK
empty stack
ok
mmm . -4 ok

works www
1
DATA STACK
empty stack
2
DATA STACK
top
5180264 004F:0B68
3
DATA STACK
top
5180264 004F:0B68
4
DATA STACK
empty stack
5
DATA STACK
empty stack
ok
1 www . 5 ok

fails fff
1
DATA STACK
empty stack
2
DATA STACK
top
5180328 004F:0BA8
3
DATA STACK
top
5 0000:0005

Err# -57005 ERR: Windows exception
-> fails fff
-----------------------------------------------------------------------------------------
Note that the MAYBE word, MMM sometimes does work and I get 5.
It sometimes compiles badly though and I get -4 as shown above.
FAILS words always fail and WORKS words always work.

Re: bugs in SwiftForth

<nnd$67b5d1fe$55134055@76782156cee9e472>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21948&group=comp.lang.forth#21948

  copy link   Newsgroups: comp.lang.forth
Newsgroups: comp.lang.forth
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
Subject: Re: bugs in SwiftForth
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
From: alb...@cherry (none)
Originator: albert@cherry.(none) (albert)
Message-ID: <nnd$67b5d1fe$55134055@76782156cee9e472>
Organization: KPN B.V.
Date: Thu, 12 Jan 2023 10:29:02 +0100
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!feed.abavia.com!abe004.abavia.com!abp003.abavia.com!news.kpn.nl!not-for-mail
Lines: 20
Injection-Date: Thu, 12 Jan 2023 10:29:02 +0100
Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com"
X-Received-Bytes: 1544
 by: none - Thu, 12 Jan 2023 09:29 UTC

In article <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>,
Hugh Aguilar <hughaguilar96@gmail.com> wrote:
>I think that Stephen Pelc introduced bugs into the latest VFX versions
>for the purpose of preventing my novice package from working.

Welcome back, Hugh! I like the idea that a multiple-billion
multinational goes to the trouble of making your novice package
unusable. It is of Trumpian arrogance.

However it is one of two. You have identified a crime against
portability of VFX or your program has not been standard to
begin with. Which is it?

Groetjes Albert
--
Don't praise the day before the evening. One swallow doesn't make
spring. You must not say "hey" before you have crossed the bridge.
Don't sell the hide of the bear until you shot it. Better one bird in
the hand than ten in the air. - the Wise from Antrim -

Re: bugs in SwiftForth

<tpoohm$77e$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21950&group=comp.lang.forth#21950

  copy link   Newsgroups: comp.lang.forth
Path: i2pn2.org!i2pn.org!aioe.org!7AktqsUqy5CCvnKa3S0Dkw.user.46.165.242.75.POSTED!not-for-mail
From: dxfo...@gmail.com (dxforth)
Newsgroups: comp.lang.forth
Subject: Re: bugs in SwiftForth
Date: Thu, 12 Jan 2023 21:48:22 +1100
Organization: Aioe.org NNTP Server
Message-ID: <tpoohm$77e$1@gioia.aioe.org>
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
<nnd$67b5d1fe$55134055@76782156cee9e472>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="7406"; posting-host="7AktqsUqy5CCvnKa3S0Dkw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.6.1
X-Notice: Filtered by postfilter v. 0.9.2
 by: dxforth - Thu, 12 Jan 2023 10:48 UTC

On 12/01/2023 8:29 pm, albert wrote:
> In article <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>,
> Hugh Aguilar <hughaguilar96@gmail.com> wrote:
>> I think that Stephen Pelc introduced bugs into the latest VFX versions
>> for the purpose of preventing my novice package from working.
>
> Welcome back, Hugh! I like the idea that a multiple-billion
> multinational goes to the trouble of making your novice package
> unusable. It is of Trumpian arrogance.
>
> However it is one of two. You have identified a crime against
> portability of VFX or your program has not been standard to
> begin with. Which is it?

ANS be praised. The band is getting back together on a mission to
root out non-compliance.

Re: bugs in SwiftForth

<nnd$11d7881b$025e189b@c3c5c197931f3efe>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21952&group=comp.lang.forth#21952

  copy link   Newsgroups: comp.lang.forth
Newsgroups: comp.lang.forth
Subject: Re: bugs in SwiftForth
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com> <nnd$67b5d1fe$55134055@76782156cee9e472> <tpoohm$77e$1@gioia.aioe.org>
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
From: alb...@cherry (none)
Originator: albert@cherry.(none) (albert)
Message-ID: <nnd$11d7881b$025e189b@c3c5c197931f3efe>
Organization: KPN B.V.
Date: Thu, 12 Jan 2023 12:35:09 +0100
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!feed.abavia.com!abe005.abavia.com!abp002.abavia.com!news.kpn.nl!not-for-mail
Lines: 34
Injection-Date: Thu, 12 Jan 2023 12:35:09 +0100
Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com"
X-Received-Bytes: 2257
 by: none - Thu, 12 Jan 2023 11:35 UTC

In article <tpoohm$77e$1@gioia.aioe.org>, dxforth <dxforth@gmail.com> wrote:
>On 12/01/2023 8:29 pm, albert wrote:
>> In article <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>,
>> Hugh Aguilar <hughaguilar96@gmail.com> wrote:
>>> I think that Stephen Pelc introduced bugs into the latest VFX versions
>>> for the purpose of preventing my novice package from working.
>>
>> Welcome back, Hugh! I like the idea that a multiple-billion
>> multinational goes to the trouble of making your novice package
>> unusable. It is of Trumpian arrogance.
>>
>> However it is one of two. You have identified a crime against
>> portability of VFX or your program has not been standard to
>> begin with. Which is it?
>
>ANS be praised. The band is getting back together on a mission to
>root out non-compliance.

Suppose you don't bother about ANS, and you have written a program that
compiles with a particular version of VFX.
Then you should not complain that it no longer compiles with a newer
version of VFX.

However if you do bother about ANS/ISO , then you can reap great benefit
from the efforts within MPE to deliver a compiler that be standard.
Even if you are not a paying customer.

Groetjes Albert
--
Don't praise the day before the evening. One swallow doesn't make
spring. You must not say "hey" before you have crossed the bridge.
Don't sell the hide of the bear until you shot it. Better one bird in
the hand than ten in the air. - the Wise from Antrim -

bug in VFX? (was: bugs in SwiftForth)

<2023Jan12.123756@mips.complang.tuwien.ac.at>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21956&group=comp.lang.forth#21956

  copy link   Newsgroups: comp.lang.forth
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: ant...@mips.complang.tuwien.ac.at (Anton Ertl)
Newsgroups: comp.lang.forth
Subject: bug in VFX? (was: bugs in SwiftForth)
Date: Thu, 12 Jan 2023 11:37:56 GMT
Organization: Institut fuer Computersprachen, Technische Universitaet Wien
Lines: 17
Message-ID: <2023Jan12.123756@mips.complang.tuwien.ac.at>
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com> <nnd$67b5d1fe$55134055@76782156cee9e472>
Injection-Info: reader01.eternal-september.org; posting-host="de605e8ec13bcf11ed4a6bb50493f775";
logging-data="1335584"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19gh2A3/HiHS42+NMPLtesL"
Cancel-Lock: sha1:l+eRVMmmyKHAbViY8f8ud5yQK/M=
X-newsreader: xrn 10.11
 by: Anton Ertl - Thu, 12 Jan 2023 11:37 UTC

albert@cherry.(none) (albert) writes:
>However it is one of two. You have identified a crime against
>portability of VFX or your program has not been standard to
>begin with. Which is it?

Can't you tell yourself? I see no non-standard usage in the test
program he posted.

When I tried it with VFX Forth 64 5.11 RC2, MMM produced the wrong
result and FAILS crashed.

- anton
--
M. Anton Ertl http://www.complang.tuwien.ac.at/anton/home.html
comp.lang.forth FAQs: http://www.complang.tuwien.ac.at/forth/faq/toc.html
New standard: https://forth-standard.org/
EuroForth 2022: https://euro.theforth.net

Re: bugs in SwiftForth

<nnd$3e1b192d$5b2d30f8@b12aa25ab50873a9>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21958&group=comp.lang.forth#21958

  copy link   Newsgroups: comp.lang.forth
Newsgroups: comp.lang.forth
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com> <nnd$67b5d1fe$55134055@76782156cee9e472>
Subject: Re: bugs in SwiftForth
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
From: alb...@cherry (none)
Originator: albert@cherry.(none) (albert)
Message-ID: <nnd$3e1b192d$5b2d30f8@b12aa25ab50873a9>
Organization: KPN B.V.
Date: Thu, 12 Jan 2023 13:26:33 +0100
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.mb-net.net!open-news-network.org!news.mind.de!bolzen.all.de!npeer.as286.net!npeer-ng0.as286.net!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!feed.abavia.com!abe005.abavia.com!abp003.abavia.com!news.kpn.nl!not-for-mail
Lines: 34
Injection-Date: Thu, 12 Jan 2023 13:26:33 +0100
Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com"
X-Received-Bytes: 2123
 by: none - Thu, 12 Jan 2023 12:26 UTC

In article <nnd$67b5d1fe$55134055@76782156cee9e472>,
none) (albert <albert@cherry.> wrote:
>In article <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>,
>Hugh Aguilar <hughaguilar96@gmail.com> wrote:
>>I think that Stephen Pelc introduced bugs into the latest VFX versions
>>for the purpose of preventing my novice package from working.
>
>Welcome back, Hugh! I like the idea that a multiple-billion
>multinational goes to the trouble of making your novice package
>unusable. It is of Trumpian arrogance.

I regret sending this post. I was out of line sending this riposte.
Apologize.

>
>However it is one of two. You have identified a crime against
>portability of VFX or your program has not been standard to
>begin with. Which is it?

Ertl's reaction is more professional. He actually looked into it.

>
>Groetjes Albert
>--
>Don't praise the day before the evening. One swallow doesn't make
>spring. You must not say "hey" before you have crossed the bridge.
>Don't sell the hide of the bear until you shot it. Better one bird in
>the hand than ten in the air. - the Wise from Antrim -
--
Don't praise the day before the evening. One swallow doesn't make
spring. You must not say "hey" before you have crossed the bridge.
Don't sell the hide of the bear until you shot it. Better one bird in
the hand than ten in the air. - the Wise from Antrim -

Re: bugs in SwiftForth

<f707fc13-b8d8-41f6-90fd-6ef8070cd40cn@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21960&group=comp.lang.forth#21960

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:6214:4305:b0:526:307b:25be with SMTP id oe5-20020a056214430500b00526307b25bemr4981058qvb.73.1673536249947;
Thu, 12 Jan 2023 07:10:49 -0800 (PST)
X-Received: by 2002:ac8:1288:0:b0:3a9:82a1:4f6 with SMTP id
y8-20020ac81288000000b003a982a104f6mr2241264qti.117.1673536249788; Thu, 12
Jan 2023 07:10:49 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Thu, 12 Jan 2023 07:10:49 -0800 (PST)
In-Reply-To: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=92.40.212.68; posting-account=9A5f7goAAAD_QfJPZnlK3Xq_UhzYjdP-
NNTP-Posting-Host: 92.40.212.68
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f707fc13-b8d8-41f6-90fd-6ef8070cd40cn@googlegroups.com>
Subject: Re: bugs in SwiftForth
From: november...@gmail.com (NN)
Injection-Date: Thu, 12 Jan 2023 15:10:49 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 3560
 by: NN - Thu, 12 Jan 2023 15:10 UTC

I dont understand x86 assembly , however I can see that the "see" output for mmm and nnn is different.
perhaps that might provide a clue.

ok
see maybe
MAYBE
( 000E61C0 48FF15A6F5F2FF ) CALL FFF2F5A6 [RIP] @0001576D
( 000E61C7 E864C3F9FF ) CALL 00082530 :
( 000E61CC 488D6DF8 ) LEA RBP, [RBP+-08]
( 000E61D0 48895D00 ) MOV [RBP], RBX
( 000E61D4 BB01000000 ) MOV EBX, # 00000001
( 000E61D9 E82A74F3FF ) CALL 0001D608 .
( 000E61DE E88D4EF4FF ) CALL 0002B070 .S
( 000E61E3 E868F0F3FF ) CALL 00025250 LITERAL
( 000E61E8 488D6DF0 ) LEA RBP, [RBP+-10]
( 000E61EC 48C7450005000000 ) MOV QWord [RBP], # 00000005
( 000E61F4 48895D08 ) MOV [RBP+08], RBX
( 000E61F8 BB02000000 ) MOV EBX, # 00000002
( 000E61FD E80674F3FF ) CALL 0001D608 .
( 000E6202 E8694EF4FF ) CALL 0002B070 .S
( 000E6207 E8ACC3F9FF ) CALL 000825B8 ;
( 000E620C 488D6DF8 ) LEA RBP, [RBP+-08]
( 000E6210 48895D00 ) MOV [RBP], RBX
( 000E6214 BB03000000 ) MOV EBX, # 00000003
( 000E6219 E8EA73F3FF ) CALL 0001D608 .
( 000E621E E84D4EF4FF ) CALL 0002B070 .S
( 000E6223 C3 ) RET/NEXT
( 100 bytes, 21 instructions )
ok
maybe mmm
1
DATA STACK
empty stack
2
DATA STACK
empty stack
3
DATA STACK
empty stack
ok
mmm . 0 ok
see mmm
MMM
( 000E6410 488D6DF8 ) LEA RBP, [RBP+-08]
( 000E6414 48895D00 ) MOV [RBP], RBX
( 000E6418 BB00000000 ) MOV EBX, # 00000000
( 000E641D C3 ) RET/NEXT
( 14 bytes, 4 instructions )
ok
maybe nnn
1
DATA STACK
empty stack
2
DATA STACK
empty stack
3
DATA STACK
empty stack
ok
see nnn
NNN
( 000E6450 488D6DF8 ) LEA RBP, [RBP+-08]
( 000E6454 48895D00 ) MOV [RBP], RBX
( 000E6458 BB05000000 ) MOV EBX, # 00000005
( 000E645D C3 ) RET/NEXT
( 14 bytes, 4 instructions )
ok
nnn . 5 ok
nnn . 5 ok

Can I suggest the following change :

: lit, ( val -- ) \ runtime: -- val
align postpone literal ;

Does this fix the problem Hugh ?

Re: bugs in SwiftForth

<tpq9h3$ddg$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21966&group=comp.lang.forth#21966

  copy link   Newsgroups: comp.lang.forth
Path: i2pn2.org!i2pn.org!aioe.org!7AktqsUqy5CCvnKa3S0Dkw.user.46.165.242.75.POSTED!not-for-mail
From: dxfo...@gmail.com (dxforth)
Newsgroups: comp.lang.forth
Subject: Re: bugs in SwiftForth
Date: Fri, 13 Jan 2023 11:44:18 +1100
Organization: Aioe.org NNTP Server
Message-ID: <tpq9h3$ddg$1@gioia.aioe.org>
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
<nnd$67b5d1fe$55134055@76782156cee9e472> <tpoohm$77e$1@gioia.aioe.org>
<nnd$11d7881b$025e189b@c3c5c197931f3efe>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="13744"; posting-host="7AktqsUqy5CCvnKa3S0Dkw.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.6.1
X-Notice: Filtered by postfilter v. 0.9.2
 by: dxforth - Fri, 13 Jan 2023 00:44 UTC

On 12/01/2023 10:35 pm, albert wrote:
> In article <tpoohm$77e$1@gioia.aioe.org>, dxforth <dxforth@gmail.com> wrote:
>> On 12/01/2023 8:29 pm, albert wrote:
>>> In article <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>,
>>> Hugh Aguilar <hughaguilar96@gmail.com> wrote:
>>>> I think that Stephen Pelc introduced bugs into the latest VFX versions
>>>> for the purpose of preventing my novice package from working.
>>>
>>> Welcome back, Hugh! I like the idea that a multiple-billion
>>> multinational goes to the trouble of making your novice package
>>> unusable. It is of Trumpian arrogance.
>>>
>>> However it is one of two. You have identified a crime against
>>> portability of VFX or your program has not been standard to
>>> begin with. Which is it?
>>
>> ANS be praised. The band is getting back together on a mission to
>> root out non-compliance.
>
> Suppose you don't bother about ANS, and you have written a program that
> compiles with a particular version of VFX.
> Then you should not complain that it no longer compiles with a newer
> version of VFX.
>
> However if you do bother about ANS/ISO , then you can reap great benefit
> from the efforts within MPE to deliver a compiler that be standard.
> Even if you are not a paying customer.

The Standard and what it permits is too complicated for the average user
to understand. Implementers too, it would seem. ANS dug a hole so deep
it challenges everyone.

Re: bugs in SwiftForth

<6b1b6a07-3776-43d6-8032-19f2d4b51f3bn@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21967&group=comp.lang.forth#21967

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:620a:4720:b0:6fa:8b0b:10c9 with SMTP id bs32-20020a05620a472000b006fa8b0b10c9mr4932048qkb.732.1673575497489;
Thu, 12 Jan 2023 18:04:57 -0800 (PST)
X-Received: by 2002:a25:e7d2:0:b0:7c0:46a9:5e62 with SMTP id
e201-20020a25e7d2000000b007c046a95e62mr1073246ybh.245.1673575497327; Thu, 12
Jan 2023 18:04:57 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Thu, 12 Jan 2023 18:04:57 -0800 (PST)
In-Reply-To: <nnd$67b5d1fe$55134055@76782156cee9e472>
Injection-Info: google-groups.googlegroups.com; posting-host=218.166.11.109; posting-account=G2sM6AoAAADOlDdo9rWD6sFkj3T5ULsz
NNTP-Posting-Host: 218.166.11.109
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com> <nnd$67b5d1fe$55134055@76782156cee9e472>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <6b1b6a07-3776-43d6-8032-19f2d4b51f3bn@googlegroups.com>
Subject: Re: bugs in SwiftForth
From: jfo...@ms4.hinet.net (Jach Feng)
Injection-Date: Fri, 13 Jan 2023 02:04:57 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2423
 by: Jach Feng - Fri, 13 Jan 2023 02:04 UTC

none albert 在 2023年1月12日 星期四下午5:29:05 [UTC+8] 的信中寫道:
> In article <6fb65bf5-2e2a-4957...@googlegroups.com>,
> Hugh Aguilar <hughag...@gmail.com> wrote:
> >I think that Stephen Pelc introduced bugs into the latest VFX versions
> >for the purpose of preventing my novice package from working.
> Welcome back, Hugh! I like the idea that a multiple-billion
> multinational goes to the trouble of making your novice package
> unusable. It is of Trumpian arrogance.
>
> However it is one of two. You have identified a crime against
> portability of VFX or your program has not been standard to
> begin with. Which is it?
>
> Groetjes Albert
> --
> Don't praise the day before the evening. One swallow doesn't make
> spring. You must not say "hey" before you have crossed the bridge.
> Don't sell the hide of the bear until you shot it. Better one bird in
> the hand than ten in the air. - the Wise from Antrim -
I am confused that what makes you such a scumbag? Can't you just get lost out of this forum? It's a shame to all of us see this post!

Re: bugs in SwiftForth

<3cb0c742-180c-4a92-a676-ed0e18046181n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21968&group=comp.lang.forth#21968

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:ac8:6eca:0:b0:3a9:68ba:4c10 with SMTP id f10-20020ac86eca000000b003a968ba4c10mr2708021qtv.676.1673581985069;
Thu, 12 Jan 2023 19:53:05 -0800 (PST)
X-Received: by 2002:a05:690c:385:b0:367:541d:6624 with SMTP id
bh5-20020a05690c038500b00367541d6624mr2272355ywb.61.1673581984826; Thu, 12
Jan 2023 19:53:04 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Thu, 12 Jan 2023 19:53:04 -0800 (PST)
In-Reply-To: <f707fc13-b8d8-41f6-90fd-6ef8070cd40cn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=63.158.165.131; posting-account=OxDKOgoAAADW0cxAqHqpN1zqeCoSsDap
NNTP-Posting-Host: 63.158.165.131
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com> <f707fc13-b8d8-41f6-90fd-6ef8070cd40cn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <3cb0c742-180c-4a92-a676-ed0e18046181n@googlegroups.com>
Subject: Re: bugs in SwiftForth
From: hughagui...@gmail.com (Hugh Aguilar)
Injection-Date: Fri, 13 Jan 2023 03:53:05 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1902
 by: Hugh Aguilar - Fri, 13 Jan 2023 03:53 UTC

On Thursday, January 12, 2023 at 8:10:51 AM UTC-7, NN wrote:
> Can I suggest the following change :
> : lit, ( val -- ) \ runtime: -- val
> align postpone literal ;
>
> Does this fix the problem Hugh ?

That seems to fix the problem.
This explains why MAYBE sometimes works and sometimes doesn't.
The code in LIT, is sometimes aligned and sometimes not. although
that is weird too --- I would expect the code in the word created by MAYBE
to always be aligned on a paragraph boundary to reduce cache-thrashing.

I haven't actually taken the time to use SEE to look at the code generated, or
to look at the code in the compiler that generates this code.
It is not really my job to debug VFX for Stephen Pelc.

Re: bugs in VFX

<c8069399-0138-4f37-ac10-da099b6f212dn@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21969&group=comp.lang.forth#21969

  copy link   Newsgroups: comp.lang.forth
X-Received: by 2002:a05:6214:448a:b0:531:d1e5:6ae6 with SMTP id on10-20020a056214448a00b00531d1e56ae6mr2227092qvb.66.1673583682211;
Thu, 12 Jan 2023 20:21:22 -0800 (PST)
X-Received: by 2002:a25:9f8b:0:b0:705:cde7:2363 with SMTP id
u11-20020a259f8b000000b00705cde72363mr9640485ybq.81.1673583682005; Thu, 12
Jan 2023 20:21:22 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.forth
Date: Thu, 12 Jan 2023 20:21:21 -0800 (PST)
In-Reply-To: <nnd$3e1b192d$5b2d30f8@b12aa25ab50873a9>
Injection-Info: google-groups.googlegroups.com; posting-host=63.158.165.131; posting-account=OxDKOgoAAADW0cxAqHqpN1zqeCoSsDap
NNTP-Posting-Host: 63.158.165.131
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
<nnd$67b5d1fe$55134055@76782156cee9e472> <nnd$3e1b192d$5b2d30f8@b12aa25ab50873a9>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <c8069399-0138-4f37-ac10-da099b6f212dn@googlegroups.com>
Subject: Re: bugs in VFX
From: hughagui...@gmail.com (Hugh Aguilar)
Injection-Date: Fri, 13 Jan 2023 04:21:22 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 3869
 by: Hugh Aguilar - Fri, 13 Jan 2023 04:21 UTC

I made a typo in the title of this thread.
It should have been "Bugs in VFX" not "Bugs in SwiftForth."
SwiftForth hasn't changed at all.

On Thursday, January 12, 2023 at 5:26:35 AM UTC-7, none albert wrote:
> In article <nnd$67b5d1fe$55134055@76782156cee9e472>,
> none) (albert <albert@cherry.> wrote:
> >In article <6fb65bf5-2e2a-4957...@googlegroups.com>,
> >Hugh Aguilar <hughag...@gmail.com> wrote:
> >>I think that Stephen Pelc introduced bugs into the latest VFX versions
> >>for the purpose of preventing my novice package from working.
> >
> >Welcome back, Hugh! I like the idea that a multiple-billion
> >multinational goes to the trouble of making your novice package
> >unusable. It is of Trumpian arrogance.
> I regret sending this post. I was out of line sending this riposte.
> Apologize.

I accept your apology.
I have to point out however, that you never apologized for this attack:
https://groups.google.com/g/comp.lang.forth/c/qqlp1gZnVic

I still think that Stephen Pelc introduced the bug for the purpose of
breaking my novice package. Stephen Pelc hates me because I wrote
an early-binding MACRO: that he and all of the comp.lang.forth experts
have failed to write. They are going to continue to fail at this forever
because they don't have disambiguifiers available, which are needed.
They don't have disambiguifiers because Stephen Pelc said that my
disambiguifiers don't work --- so, nobody wants to use the disambiguifiers
because doing so would contradict Stephen Pelc --- the disambiguifiers
obviously do work though, because I was able to write an early-binding
MACRO: using them. I also wrote SYNONYM in ANS-Forth using the
disambiguifiers, which Stephen Pelc has also failed at.
This is documented here:
https://groups.google.com/g/comp.lang.forth/c/T-yYkpVwYew/m/tNE4Q9aNDwAJ
Note that Anton Ertl made an attempt at writing an early-binding macro facility,
but he failed. His macros can't include literal numbers. His macros can't include
words that remove data from the input-stream, such as [CHAR] C" S" POSTPONE etc..
If I was a school teacher and Anton Ertl was a student, I would give him a 'C' grade
for this effort. He has a crude macro facility, but with so many limitations as to make
it worthless. Anton Ertl is a school teacher though, so he just gives me an 'F' without
any supporting evidence --- he is on the Forth-200x committee, so he is guaranteed
the loyalty of all of the Forth-200x members who want to continue to be members
so they can claim that they set the standard for Forth, whereas mere Forth
programmers such as myself kneel before them and depend upon their guidance.

Re: bugs in VFX

<20230113095851.050f47dafaf23d79406f0ecc@127.0.0.1>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=21975&group=comp.lang.forth#21975

  copy link   Newsgroups: comp.lang.forth
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: adm...@127.0.0.1 (Kerr-Mudd, John)
Newsgroups: comp.lang.forth
Subject: Re: bugs in VFX
Date: Fri, 13 Jan 2023 09:58:51 +0000
Organization: Dis
Lines: 32
Message-ID: <20230113095851.050f47dafaf23d79406f0ecc@127.0.0.1>
References: <6fb65bf5-2e2a-4957-8bb5-381eed68dd64n@googlegroups.com>
<nnd$67b5d1fe$55134055@76782156cee9e472>
<nnd$3e1b192d$5b2d30f8@b12aa25ab50873a9>
<c8069399-0138-4f37-ac10-da099b6f212dn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: reader01.eternal-september.org; posting-host="be574ebcdd05f23eadec70aee0bfac9a";
logging-data="1669216"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+S1k5hZKHpJHUxSfxnw85M6xW41KM8vZw="
Cancel-Lock: sha1:WJ7T6I9UYTpqu3Q8RWpSGiPUYMo=
;X-no-Archive: Maybe
GNU: Terry Pratchett
X-Newsreader: Sylpheed 3.7.0 (GTK+ 2.24.30; i686-pc-mingw32)
 by: Kerr-Mudd, John - Fri, 13 Jan 2023 09:58 UTC

On Thu, 12 Jan 2023 20:21:21 -0800 (PST)
Hugh Aguilar <hughaguilar96@gmail.com> wrote:

> I made a typo in the title of this thread.
> It should have been "Bugs in VFX" not "Bugs in SwiftForth."
> SwiftForth hasn't changed at all.
>
> On Thursday, January 12, 2023 at 5:26:35 AM UTC-7, none albert wrote:
> > In article <nnd$67b5d1fe$55134055@76782156cee9e472>,
> > none) (albert <albert@cherry.> wrote:
> > >In article <6fb65bf5-2e2a-4957...@googlegroups.com>,
> > >Hugh Aguilar <hughag...@gmail.com> wrote:
> > >>I think that Stephen Pelc introduced bugs into the latest VFX versions
> > >>for the purpose of preventing my novice package from working.
> > >
> > >Welcome back, Hugh! I like the idea that a multiple-billion
> > >multinational goes to the trouble of making your novice package
> > >unusable. It is of Trumpian arrogance.
> > I regret sending this post. I was out of line sending this riposte.
> > Apologize.
>
> I accept your apology.
> I have to point out however, that you never apologized for this attack:
> https://groups.google.com/g/comp.lang.forth/c/qqlp1gZnVic
>
> I still think that Stephen Pelc introduced the bug for the purpose of
> breaking my novice package. Stephen Pelc hates me because I wrote
[]
And it took that long.

--
Bah, and indeed Humbug.

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor