Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion res/resfiles/scripts/Hooks/logParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function LogParser() {
// Additionally, it recognizes other warnings like "LaTeX Font Warning: ...\n(Font) ...".
// The macro \GenericWarning does not produce formatted output, so it is impossible
// to match it. We need to look for output generated by higher level commands.
Regex: new RegExp("^(?:Class|Package|LaTeX) ([^\\s]+) Warning: (?:(?:\\(\\1\\)\\s.+)+|.+\n)*.*\\.\n"),
Regex: new RegExp("^(?:Class|Package|LaTeX3?|Module) ([^\\s]+) Warning: (?:(?:\\(\\1\\)\\s.+)+|.+\n)*.*\n"),
Callback: function (m, f) {
// We remove "\n(<name>) " from description:
var desc = m[0].replace(new RegExp("^(.{0," + (max_print_line - 1) + "})$", "gm"), "$1 ")
Expand Down