Merge pull request #45 from VanessaE/master

fix missing code display in after() in µC
master
VanessaE 2012-09-01 14:33:29 -07:00
commit 00d797ae0f
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ 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")
meta:set_string("infotext", "Working Microcontroller\n"..code)
end
end
end