REBOL3 tracker
  0.9.12 beta
Ticket #0001319 User: anonymous

Project:



rss
TypeBug Statustested Date4-Nov-2009 20:53
Versionalpha 94 CategorySyntax Submitted bymeijeru
PlatformAll Severityminor Prioritynormal

Summary Different treatment of < when following path ending in digit or alpha
Description See examples. The < terminates a path of the form a/b but not one of the form a/3.
Example code
>> length? [a/b<]
== 2
>> length? [a/3<]
** Syntax error: invalid "integer" -- "3<"


Assigned ton/a Fixed inalpha 97 Last Update7-Feb-2010 22:02


Comments
(0002000)
BrianH
7-Feb-2010 22:02

Behavior as of alpha 87:
>> length? [a/b<]
** Syntax error: invalid "word" -- "b<"
** Near: (line 1) length? [a/b<]

>> length? [a/3<]
** Syntax error: invalid "integer" -- "3<"
** Near: (line 1) length? [a/3<]

Date User Field Action Change
7-Feb-2010 22:02 BrianH Status Modified built => tested
7-Feb-2010 22:02 BrianH Comment : 0002000 Added -
6-Feb-2010 18:48 Carl Fixedin Modified => alpha 97
6-Feb-2010 18:48 Carl Status Modified reviewed => built
18-Nov-2009 03:30 BrianH Code Modified -
18-Nov-2009 03:30 BrianH Status Modified submitted => reviewed
18-Nov-2009 03:30 BrianH Type Modified Issue => Bug
4-Nov-2009 20:53 meijeru Ticket Added -