summaryrefslogtreecommitdiff
path: root/language/swedish/slatex/l2sl/comtab.c
blob: 26712d41c5fd5458496d1339e26b270557520e99 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef lint
static char *copyright = "Copyright (C) 1985, Sven Mattisson.";
#endif

#include "comtab.h"

struct command comtab[] = {
    { "bibitem", ONEOPT },
    { "caption", ONEOPT },
    { "cite", ONEOPT },
    { "cline", ONEOPT },
    { "documentstyle", ONEOPT },
    { "footnote", ONEOPT },
    { "footnotemark", ONEOPT },
    { "footnotetext", ONEOPT },
    { "framebox", PNTOPT },
    { "head", ONEOPT },
    { "item", ONEOPT },
    { "line", ONLYPNT },
    { "linebreak", ONEOPT },
    { "makebox", PNTOPT },
    { "marginpar", ONEOPT },
    { "minipage", ONEOPT },
    { "multiput", ONLYPNT },
    { "newcommand", NEWCOMMAND },
    { "newtheorem", NEWTHEOREM },
    { "nolinebreak", ONEOPT },
    { "nopagebreak", ONEOPT },
    { "oval", PNTOPT },
    { "pagebreak", ONEOPT },
    { "parbox", ONEOPT },
    { "picture", ONLYPNT },
    { "put", ONLYPNT },
    { "rule", ONEOPT },
    { "shortstack", ONEOPT },
    { "sqrt", ONEOPT },
    { "twocolumn", ONEOPT },
    { "typein", ONEOPT },
    { "vector", ONLYPNT }
};

int comtabsize = sizeof (comtab) / sizeof (struct command);