You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./core.lua:47: syntax error at [.sproto] line (108)
stack traceback:
[C]: in function 'error'
./core.lua:47: in function <./core.lua:46>
[C]: in function 'lpeg.match'
./core.lua:291: in upvalue 'parser'
./core.lua:317: in function 'core.gen_trunk'
sprotodump.lua:57: in main chunk
[C]: in ?
怀疑是core.lua这一句不能正确匹配的原因? local mainkey = "(" * blank0 * name * blank0 * ")"
我改成 local mainkey = "(" * blank0 * (name^0) * blank0 * ")"
看起来就解决了
The text was updated successfully, but these errors were encountered:
怀疑是core.lua这一句不能正确匹配的原因?
local mainkey = "(" * blank0 * name * blank0 * ")"
我改成
local mainkey = "(" * blank0 * (name^0) * blank0 * ")"
看起来就解决了
The text was updated successfully, but these errors were encountered: