[783] in Coldmud discussion meeting

root meeting help first previous next last

Clarification

daemon@ATHENA.MIT.EDU (Thu Aug 24 00:43:28 1995 )

Date: Wed, 23 Aug 1995 22:40:42 -0600
From: 869683 Gillespie Brandon James <brandon@avon.declab.usu.edu>
To: coldstuff@MIT.EDU

To see what the driver is doing to your escapes, try:

    ;"\$test"
    => "$test"

And:

    ;"\\$test"
    => "\\$test"

Unfortunately, the latter may be confusing.  The key is to keep in mind that
when it hits the regular expression matcher, \\ is only \.  I'm going to
poke through the code some more to see if there is simply a step left out
in the match regexp function, which would correctly frob the string...

-Brandon