diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-10-24 17:14:16 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-10-24 17:14:16 +0000 |
| commit | 8e0e3ac1481ea8c84aa2a0dbfb23bbb3d7700a0c (patch) | |
| tree | b93bc282935b99bb8176c91784a7d61d35925222 /main.c | |
| parent | 3cb5a6f58a56ca01547558e7b4543bf98fc25e1b (diff) | |
| download | halibut-8e0e3ac1481ea8c84aa2a0dbfb23bbb3d7700a0c.zip halibut-8e0e3ac1481ea8c84aa2a0dbfb23bbb3d7700a0c.tar.gz halibut-8e0e3ac1481ea8c84aa2a0dbfb23bbb3d7700a0c.tar.bz2 halibut-8e0e3ac1481ea8c84aa2a0dbfb23bbb3d7700a0c.tar.xz | |
Macros; \- for nonbreaking hyphen
[originally from svn r252]
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -179,8 +179,10 @@ int main(int argc, char **argv) { in.nfiles = nfiles; in.currfp = NULL; in.currindex = 0; - in.npushback = 0; + in.npushback = in.pushbacksize = 0; + in.pushback = NULL; in.reportcols = reportcols; + in.stack = NULL; idx = make_index(); @@ -188,6 +190,8 @@ int main(int argc, char **argv) { if (!sourceform) exit(EXIT_FAILURE); + sfree(in.pushback); + mark_attr_ends(sourceform); sfree(infiles); |