Add a missing trace level to debug output.

Originally committed to SVN as r1340.
This commit is contained in:
Niels Martin Hansen 2007-07-03 18:25:30 +00:00
parent e64f9b2cfe
commit b9e7754b17
1 changed files with 2 additions and 1 deletions

View File

@ -113,6 +113,7 @@ function parse_code(meta, styles, line, templates, mods)
end
end
-- List of reserved words that can't be used as "line" template identifiers
template_modifiers = {
"pre-line", "line", "syl", "furi", "char", "all", "repeat", "loop",
"notext", "keeptags", "noblank", "multi", "fx", "fxgroup"
@ -142,7 +143,7 @@ function parse_template(meta, styles, line, templates, mods)
rest = t
m = m:lower()
if (m == "pre-line" or m == "line") and not inserted then
aegisub.debug.out("Found line template '%s'\n", line.text)
aegisub.debug.out(5, "Found line template '%s'\n", line.text)
-- should really fail if already inserted
local id, t = string.headtail(rest)
id = id:lower()