View | Details | Raw Unified | Return to bug 265001 | Differences between
and this patch

Collapse All | Expand All

(-)b/stand/lua/config.lua (-1 / +1 lines)
Lines 63-69 local MSG_FAILSYN_EOLVAR = "Unescaped $ at end of line" Link Here
63
local MSG_FAILSYN_BADVAR = "Malformed variable expression at position '%d'"
63
local MSG_FAILSYN_BADVAR = "Malformed variable expression at position '%d'"
64
64
65
local MODULEEXPR = '([-%w_]+)'
65
local MODULEEXPR = '([-%w_]+)'
66
local QVALEXPR = '"(.*)"'
66
local QVALEXPR = '"([^"]*)"'
67
local QVALREPL = QVALEXPR:gsub('%%', '%%%%')
67
local QVALREPL = QVALEXPR:gsub('%%', '%%%%')
68
local WORDEXPR = "([-%w%d][-%w%d_.]*)"
68
local WORDEXPR = "([-%w%d][-%w%d_.]*)"
69
local WORDREPL = WORDEXPR:gsub('%%', '%%%%')
69
local WORDREPL = WORDEXPR:gsub('%%', '%%%%')

Return to bug 265001