Another unicode glitch, append_from_num is requiring multiple arguments
local subj2u=unicode.new("Sheri")
subj2u.append_from_num(0x2154) ;;error
Latest regex edition passes all the regexPlugintests and also a few unicode
handle tests (handles in pattern, subject and replacement).
If user doesn't have a unicode.dll, regexplugintest (which doesn't use any
unicode) runs marginally slower in both 206 and 207. 207 is running a little
slower than 206. If it were defaulting to no unicode and didn't need worry
about unicode.dll, I just thought it could be faster.
Following, each configuration ran a revised regexplugintest script that
essentially executed the series of tests 10 times. The script was processed
three times and the average time is presented.
206 w unicode.dll available: 46.9042 sec
206 NO unicode.dll: 47.3687 sec
207 w unicode.dll available: 47.221 sec
207 NO unicode.dll: 47.8337 sec
Regards,
Sheri