r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[RAMBO] The REBOL bug and enhancement database

Volker
8-Jan-2005
[70x4]
stat64("/home/volker/d/t/rebol.r", 0xbffff11c) = -1 ENOENT (No such 
file or directory)

stat64("/home/volker/rebol.r", 0xbffff11c) = -1 ENOENT (No such file 
or directory)

stat64("/home/volker/d/t/user.r", 0xbffff11c) = -1 ENOENT (No such 
file or directory)

stat64("/home/volker/user.r", {st_mode=S_IFREG|0644, st_size=3086, 
...}) = 0
time([1105173013])                      = 1105173013
open("/home/volker/user.r", O_RDONLY)   = 8
fstat64(8, {st_mode=S_IFREG|0644, st_size=3086, ...}) = 0
time([1105173013])                      = 1105173013
read(8, "REBOL [\n    Title: \"%~/user.r\" \n"..., 3086) = 3086
close(8)                                = 0
writes..
ioctl(1, TIOCGWINSZ, {ws_row=28, ws_col=102, ws_xpixel=616, ws_ypixel=369}) 
= 0
gettimeofday({1105173013, 41193}, NULL) = 0
waitpid(-1, 0x80986c4, WNOHANG)         = 0
select(0, [], [], [], NULL <unfinished ...>
Hangs
Gabriele
8-Jan-2005
[74x3]
Note the: open("/etc/termcap", O_RDONLY)          = -1 ENOENT (No 
such file or directory)
is it the same on other systems?
also that select seems to be waiting on nothing?
Volker
8-Jan-2005
[77x6]
can you read computers mind? :))
google: /etc/termcap debian
http://packages.debian.org/stable/oldlibs/termcap-compat
apt-get install termcap-compat
console :))
Big thanks!
Gabriele
8-Jan-2005
[83x2]
:-)
it's worth reporting though, maybe can be added to the docs, or can 
be fixed by falling back some default if termcap is not there...
Volker
8-Jan-2005
[85]
Maybe some hint when not quiet? "Termcap failed, see http://***for 
suggestions"
Allen
11-Jan-2005
[86]
#3436 OK - 2.5.58.3.1 on WinXP
Anton
12-Jan-2005
[87x9]
I just noticed:
mold ['return:]  ;== "['return]"    <-- missing the colon ":"
mold/all does not help.
simplifies to:
mold 'return:   ;== "return"   (note no leading single quote, we 
are expecting that as normal though.)
mold 'hello:   ;== "hello"     (same idea)
lit-words like 'hello:  only just became valid recently (since View 
1.2.55.3.1)
I don't see any Rambo ticket for this issue (searched rambo for "word", 
looked at all 36 items.)
But, can somebody confirm if it is a bug or not ?
Ammon
12-Jan-2005
[96x2]
It would appear to me to be a bug.
(not that that means anything. ;-)
Geomol
13-Jan-2005
[98]
>> a: 'hello:
== hello


The colon seems to be removed. So it's a lit-word thing, nothing 
with mold, I guess.
Ladislav
13-Jan-2005
[99x3]
actually, ['return:] should be marked as a bug, because you are trying 
to create a "cross" between lit- and set-word
what type should it have? - the interpreter seems to take it as a 
set-word
... wrong, the interpreter takes it as a lit-word
Gabriele
14-Jan-2005
[102]
that should probably throw a syntax error... anyone submitting it?
Anton
14-Jan-2005
[103x5]
What if you want to generate code, eg:
>> reduce ['return: [integer!]]

== [return [integer!]]   ;  I wanted this --->  [return: [integer!]]
I know you can use to-set-word, but that's not very concise is it 
?
But as Ladislav pointed out above, it seems that  'return:  would 
have to be interpreted as a new datatype ( a lit-set-word! )
Maybe it's not worth it now to add such a new datatype.. or maybe 
it does not hurt at all, speedwise, because if the parser is going 
to catch the syntax error above then it may as well just assign the 
new datatype. The cost, I think, will be in maintaining a new datatype; 
bug-testing, docs etc.  So ok, I agree with Gabriele.
Ok, I posted RAMBO Ticket #-131   (waiting to be reviewed)
Ladislav
15-Jan-2005
[108]
Anton: What if you want to generate code, eg:
>> reduce ['return: [integer!]]

try reduce [first [return:] [integer!]]
Anton
15-Jan-2005
[109]
Yes, that's better, but still a workaround.. thanks :)
Geomol
15-Jan-2005
[110]
If you want something to be reduced and not others, you can use compose.
Ladislav
16-Jan-2005
[111]
or use my http://www.fm.vslib.cz/~ladislav/rebol/build.r
Anton
16-Jan-2005
[112]
Ok thanks, but it's no longer a problem.. :) I just noticed that 
it's a strange inconsistency, that's all.
Maxim
21-Jan-2005
[113x3]
just found a nasty bug!    if you call browse 5 times in any of the 
rebol view beta versions, rebol crashes.
on window 2k... not sure about other platforms
I posted it on RAMBO...
PhilB
21-Jan-2005
[116]
Same Happens here on rvdraw57e.exe & WinXp proffessional
Anton
21-Jan-2005
[117]
I get the same as PhilB: "**Crash : expand series overflow"  rvdraw57e, 
 WinXP
Anton
26-Jan-2005
[118x2]
Alan just found this issue:
>> site: http://www.dom.com/
== http://www.dom.com/
>> site/1.r
** Syntax Error: Invalid decimal -- 1.r
** Near: (line 1) site/1.r
>> site/1-r
** Syntax Error: Invalid date -- 1-r
** Near: (line 1) site/1-r
>> site/1-1-1r
== http://www.dom.com/1-Jan-2001
>> site/1_r
** Syntax Error: Invalid integer -- 1_r
** Near: (line 1) site/1_r