oops, that last commit broke something - evidently 'code' is not consistent.

This restores the previous behavior when code=nil, and shows the code when not.
此提交包含在:
Vanessa Ezekowitz
2012-09-01 17:42:42 -04:00
父節點 1d29037d8b
當前提交 34737f62e9

查看文件

@@ -426,7 +426,11 @@ function yc_command_after_execute(params)
if yc_parsecode(params.code, params.pos) == nil then
meta:set_string("infotext", "Code in after() not valid!")
else
meta:set_string("infotext", "Working Microcontroller\n"..code)
if code ~= nil then
meta:set_string("infotext", "Working Microcontroller\n"..code)
else
meta:set_string("infotext", "Working Microcontroller")
end
end
end
end