I just saw this discussion. Given .environment is an ooRexx feature and this is a Regina discussion group then I can see why noone has offered any assistance.
Two things with Regina's RexxUtil. 1) Add: Say RxFuncErrMsg() after the call to rxfuncadd to show the reason why rxfuncadd did not work 2) The call to rxfuncadd should use lower case for the 'sysloadfuncs' arguments. eg Call RxFuncAdd 'sysloadfuncs', 'rexxutil', 'sysloadfuncs' This call will be portable across al platforms. Cheers, Mark Werner T wrote: I still have one small problem: I often test Rexx code in a "Command Prompt" window. First, I extend the path to include Regina Rexx. Then I call...
After Copy and Get with Prefix macros -- odd artifact
Thanks for finding and reporting the bug Warren.
After Copy and Get with Prefix macros -- odd artifact
Warren, please provide the code for the prefix macros that cause the error so I can reproduce the problem.
wrong comparison with Numeric fuzz
Essentially the comparison rounds the numbers after an initial comparison for equality rather than before the comparison. If you compare 2.000 to 1.999 with NUMERIC DIGITS 4 and NUMERIC FUZZ 2, the comparison compares each digit from the left. As soon as the corresponding digits are unequal the comparison terminates. With the above 2 values the test for equality fails of the leading 2 and 1. Only if the significant digits are equal is the rounding applied.