proof: don't confuse ""(1) (thanks Stuart Morrow)
"" looks for patterns in the form 'prompt;' or 'prompt%', and gets confused when proof emits 'illegal;'. This change replaces the ';' with a ':', which both matches other conventional error outputs and prevents "" from getting confused.
This commit is contained in:
parent
07e8c324a8
commit
2652cbee57
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ botpage(int np) /* called at bottom of page np-1 == top of page np */
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprint(2, "illegal; try q, 17, +2, -1, p, m.7, /2, x1, y-.5 or return\n");
|
fprint(2, "illegal: try q, 17, +2, -1, p, m.7, /2, x1, y-.5 or return\n");
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue