| 1 | Index: wat2map.cmd
|
|---|
| 2 | ===================================================================
|
|---|
| 3 | --- wat2map.cmd (revision 223)
|
|---|
| 4 | +++ wat2map.cmd (working copy)
|
|---|
| 5 | @@ -183,7 +183,7 @@
|
|---|
| 6 | string = StripMatchedParen( first ) || rest
|
|---|
| 7 | Return StripMatchedParen( string )
|
|---|
| 8 | End;
|
|---|
| 9 | -End;
|
|---|
| 10 | +return;
|
|---|
| 11 |
|
|---|
| 12 | ReplaceSubstr:
|
|---|
| 13 | /* Replaces oldPat (old pattern) with newPat (new pattern) in string. */
|
|---|
| 14 | @@ -197,10 +197,10 @@
|
|---|
| 15 | string = first || newPat || rest
|
|---|
| 16 | End;
|
|---|
| 17 | Return string
|
|---|
| 18 | -End;
|
|---|
| 19 | +return;
|
|---|
| 20 |
|
|---|
| 21 | is_Hex:
|
|---|
| 22 | /* Returns 1 if String is valid hex number, 0 otherwise. */
|
|---|
| 23 | Parse Arg string
|
|---|
| 24 | Return (Length(string) > 0) & (Verify( string, '0123456789abcdefABCDEF' ) = 0)
|
|---|
| 25 | -End;
|
|---|
| 26 | +return;
|
|---|