diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-08-15 18:35:20 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-08-15 18:35:20 +0000 |
| commit | 5842eaaf51d9045bc0b199f0b5e82dfc614b2e0c (patch) | |
| tree | cafd8d6b98802f355cc6e78ac82048388aa6de82 /input.c | |
| parent | 79e16787af150c518f65850c8d54b06074a87c5d (diff) | |
| download | halibut-5842eaaf51d9045bc0b199f0b5e82dfc614b2e0c.zip halibut-5842eaaf51d9045bc0b199f0b5e82dfc614b2e0c.tar.gz halibut-5842eaaf51d9045bc0b199f0b5e82dfc614b2e0c.tar.bz2 halibut-5842eaaf51d9045bc0b199f0b5e82dfc614b2e0c.tar.xz | |
Further development; bibliographies seem to work
[originally from svn r200]
Diffstat (limited to 'input.c')
| -rw-r--r-- | input.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -485,6 +485,7 @@ static void read_file(paragraph ***ret, input *in) { */ if (t.type == tok_cmd && t.cmd == c_c && !isbrace(in)) { par.type = para_Code; + par.fpos = t.pos; while (1) { dtor(t), t = get_codepar_token(in); wd.type = word_WeakCode; @@ -524,6 +525,7 @@ static void read_file(paragraph ***ret, input *in) { if (t.type == tok_cmd) { int needkw; + par.fpos = t.pos; switch (t.cmd) { default: needkw = -1; |