blob: 162cf594ec6bdbe738827f6f924130ec996ae858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@x
@!file_line_error_style_p:boolean; {output error messages with a C style. }
@y
@!file_line_error_style_p:boolean; {output error messages with a C style. }
@!halt_on_error_p:boolean; {allow only on error.}
@z
@x
ready_already:=0;
@y
ready_already:=0;
texmf_finish_job;
@z
@x
print_char("."); show_context;
@y
if not file_line_error_style_p then begin
print_char("."); show_context
end;
if (halt_on_error_p) then begin
history:=fatal_error_stop; jump_out;
end;
@z
|