Skip to content
Snippets Groups Projects
Commit 0a677d81 authored by Luigi Scarso's avatar Luigi Scarso
Browse files

extra safeguard call_edit (HH)

parent cc3d1c46
No related branches found
No related tags found
No related merge requests found
#define luatex_svn_revision 6128
#define luatex_svn_revision -1
......@@ -485,7 +485,12 @@ void error(void)
tprint(" at line ");
print_int(line);
interaction = scroll_mode;
luatex_calledit(base_ptr, line);
if (kpse_init) {
luatex_calledit(base_ptr, line);
} else {
tprint_nl("There is no valid callback defined.");
jump_out(); /* should not be reached */
}
}
}
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment