]> git.lizzy.rs Git - plan9front.git/blob - sys/src/cmd/eqn/mark.c
merge
[plan9front.git] / sys / src / cmd / eqn / mark.c
1 #include "e.h"
2
3 void mark(int p1)
4 {
5         markline = 1;
6         printf(".ds %d \\k(09\\*(%d\n", p1, p1);
7         yyval = p1;
8         dprintf(".\tmark %d\n", p1);
9 }
10
11 void lineup(int p1)
12 {
13         markline = 2;
14         if (p1 == 0) {
15                 yyval = salloc();
16                 printf(".ds %d \\h'|\\n(09u'\n", yyval);
17         }
18         dprintf(".\tlineup %d\n", p1);
19 }