mirror of https://github.com/odrling/Aegisub
Add a missing trace level to debug output.
Originally committed to SVN as r1340.
This commit is contained in:
parent
e64f9b2cfe
commit
b9e7754b17
|
@ -113,6 +113,7 @@ function parse_code(meta, styles, line, templates, mods)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- List of reserved words that can't be used as "line" template identifiers
|
||||||
template_modifiers = {
|
template_modifiers = {
|
||||||
"pre-line", "line", "syl", "furi", "char", "all", "repeat", "loop",
|
"pre-line", "line", "syl", "furi", "char", "all", "repeat", "loop",
|
||||||
"notext", "keeptags", "noblank", "multi", "fx", "fxgroup"
|
"notext", "keeptags", "noblank", "multi", "fx", "fxgroup"
|
||||||
|
@ -142,7 +143,7 @@ function parse_template(meta, styles, line, templates, mods)
|
||||||
rest = t
|
rest = t
|
||||||
m = m:lower()
|
m = m:lower()
|
||||||
if (m == "pre-line" or m == "line") and not inserted then
|
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
|
-- should really fail if already inserted
|
||||||
local id, t = string.headtail(rest)
|
local id, t = string.headtail(rest)
|
||||||
id = id:lower()
|
id = id:lower()
|
||||||
|
|
Loading…
Reference in New Issue