Content deleted Content added
No edit summary |
No edit summary |
||
Line 320:
local msg = ''
-- comma-space? / does not matter
local newSep = defaultSep
if sSep == nil or sSep == '' then
newSep = defaultSep end
sSep = decodeUnicode(sSep or '')
if string.match(sSep, '[%s%w%d]') ~= nil then -- not ok ok
msg = 'Irregular characters in sep: ' .. sSep
end
if sSep == nil or sSep == '' then
newSep end
return sSep .. 'x'▼
end
|