Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: ...

From: jason:cunliffe:verizon at: 11-Sep-2002 19:16

I just noticed some other subtle funkiness...
>> what-dir
== %/C/rebol/view/
>> change-dir %../
== %/C/rebol/
>> what-dir
== %/C/rebol/ ok now try this
>> change-dir %.../
== %/C/rebol/view/.../
>> what-dir
== %/C/rebol/view/.../ But list-dir behaves quite correctly. It's just that rEBOL thinks of %.../ in a special way. For example:
>> type? %.../
== file!
>> type %..
** Script Error: type has no value ** Near: type %..
>> type %../
** Script Error: type has no value ** Near: type %../ ./Jason