Hi Anton, > But your example leads to an "interesting thing": > > to-lit-path %/a-path/blah > == '/a-path//blah ; <- double slash > > and note also > > to-lit-path %/a-path/blah/dog > == '/a-path//blah//dog ; <- two double slashes > > Is this a bug, or just escapism?
'/a-path//blah is a path which contains 2 items: 1) /a-path (refinement!) 2) /blah (refinement!) both items are refinements: length? to-lit-path %/a-path/blah ; == 2 type? first to-lit-path %/a-path/blah ;== refinement! type? second to-lit-path %/a-path/blah ;== refinement! It is not a bug, neither escape. --- Ciao Romano -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
