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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
$NetBSD: patch-ah,v 1.1 1999/10/04 23:21:45 simonb Exp $
--- texk/ps2pkm/hints.c.orig Sat Jan 24 23:11:28 1998
+++ texk/ps2pkm/hints.c Thu Sep 30 13:34:00 1999
@@ -167,7 +167,7 @@
}
else /* error */
{
- abort("ComputeHint: invalid orientation");
+ t1_abort("ComputeHint: invalid orientation");
}
IfTrace4((HintDebug > 1),
@@ -201,7 +201,7 @@
}
else /* error */
{
- abort("ComputeHint: invalid hinttype");
+ t1_abort("ComputeHint: invalid hinttype");
}
IfTrace1((HintDebug > 1)," hintValue=%p", hintValue);
@@ -218,7 +218,7 @@
}
else /* error */
{
- abort("ComputeHint: invalid orientation");
+ t1_abort("ComputeHint: invalid orientation");
}
}
@@ -267,7 +267,7 @@
}
else /* error */
{
- abort("ProcessHint: invalid label");
+ t1_abort("ProcessHint: invalid label");
}
}
else if (hP->adjusttype == 'r') /* Reverse */
@@ -283,18 +283,18 @@
}
else /* error */
{
- abort("ProcessHint: label is not in use");
+ t1_abort("ProcessHint: label is not in use");
}
}
else /* error */
{
- abort("ProcessHint: invalid label");
+ t1_abort("ProcessHint: invalid label");
}
}
else /* error */
{
- abort("ProcessHint: invalid adjusttype");
+ t1_abort("ProcessHint: invalid adjusttype");
}
IfTrace3((HintDebug > 1)," label=%d, thisHint=(%p,%p)\n",
hP->label, thisHint.x, thisHint.y);
@@ -386,7 +386,7 @@
else
return(XofY(edge, y));
- abort("bad subpath chain");
+ t1_abort("bad subpath chain");
/*NOTREACHED*/
}
/*
@@ -467,7 +467,7 @@
else if (ISBOTTOM(e1->flag) && y == e1->ymax)
return(!ISDOWN(e2->flag));
else
- abort("ImpliedHorizontalLine: why ask?");
+ t1_abort("ImpliedHorizontalLine: why ask?");
/*NOTREACHED*/
}
@@ -506,7 +506,7 @@
if (!ISBREAK(edge, next))
continue;
if (edge->ymax < next->ymin)
- abort("disjoint subpath?");
+ t1_abort("disjoint subpath?");
/*
'edge' now contains an edgelist at the bottom of an edge, and 'next'
contains the next subsequent edgelist in the subpath, which must be at
@@ -567,7 +567,7 @@
break1->subpath = break2->subpath;
if (ISBREAK(break1, break1->subpath))
- abort("unable to fix subpath break?");
+ t1_abort("unable to fix subpath break?");
break2->subpath = next;
|