Don't debug lines with %n
Posted: Mon Oct 24, 2011 9:28 pm
Jessie
I have associated this macro with my ~ key.
Lua Macro:
When I select this line from a file:
Data%n
Zeus crashes (I lose unsaved work).
If the line is
Data%m
it's ok. It seems to be the characters '%n' that does it.
It does not crash if I don't have the debug_output in the file. So once my files are working, everything is fine after I remove all the debug_output lines. So this is a NON-CRITICAL bug. More of an FYI
I'm using Zeus 3.97-beta25
I have associated this macro with my ~ key.
Lua Macro:
Code: Select all
function key_macro()
local data_line=get_line_text()
debug_output("line"..data_line)
end
key_macro()
Data%n
Zeus crashes (I lose unsaved work).
If the line is
Data%m
it's ok. It seems to be the characters '%n' that does it.
It does not crash if I don't have the debug_output in the file. So once my files are working, everything is fine after I remove all the debug_output lines. So this is a NON-CRITICAL bug. More of an FYI
I'm using Zeus 3.97-beta25