Let's try this. It's BUGGERED.

This commit is contained in:
rsc 2004-05-15 23:24:00 +00:00
parent 76e6aca867
commit 5cedca1b69
118 changed files with 26947 additions and 1 deletions

19
src/cmd/eqn/mark.c Normal file
View file

@ -0,0 +1,19 @@
#include "e.h"
void mark(int p1)
{
markline = 1;
printf(".ds %d \\k(09\\*(%d\n", p1, p1);
yyval = p1;
dprintf(".\tmark %d\n", p1);
}
void lineup(int p1)
{
markline = 2;
if (p1 == 0) {
yyval = salloc();
printf(".ds %d \\h'|\\n(09u'\n", yyval);
}
dprintf(".\tlineup %d\n", p1);
}