Content deleted Content added
No edit summary |
No edit summary |
||
Line 309:
-- set wordt separator
local function setSep(sSep)
local msg = ''
-- comma-space? / does not matter
if sSep == nil or sSep == '' then return defaultSep end
Line 316 ⟶ 318:
----newSep = mw.ustring.gsub(newSep, '[%s%w%d]', '')
if string.match(sSep, '[%s%w%d]') ~= nil then -- not ok ok
msg = 'Irregular characters in sep: ' .. sSep
return defaultSep
end
|