Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | o diaeresis is 246 (U+00F6) | Ingo Schwarze | 2011-03-16 | 1 | -1/+1 |
| | | | | from Christian Weisgerber <naddy at openbsd dot org> | ||||
* | Instead of a series of hard-coded strcmps, make argv_a2arg() iterate | Kristaps Dzonsons | 2011-03-16 | 1 | -73/+42 |
| | | | | | | over an array of possible argument types, hooking in to mdoc_argnames[]. This knocks off bytes for the duplicated strings and cleans up code readability. | ||||
* | Push exit_status into struct curparse alongside file_status. | Kristaps Dzonsons | 2011-03-16 | 1 | -6/+7 |
| | |||||
* | Make lint shut up a little bit. | Kristaps Dzonsons | 2011-03-15 | 10 | -14/+18 |
| | |||||
* | Remove duplicate UNCONST definition. | Kristaps Dzonsons | 2011-03-15 | 1 | -1/+0 |
| | |||||
* | Clean-up: make file_status global be local to curparse. "I agree with | Kristaps Dzonsons | 2011-03-15 | 1 | -28/+27 |
| | | | | the direction of this particular patch", schwarze@. | ||||
* | Plug memory leak of normalised-date field. | Kristaps Dzonsons | 2011-03-15 | 1 | -0/+2 |
| | |||||
* | my $buf = "string"; return $string; is cool in Perl, but not in C; | Ingo Schwarze | 2011-03-15 | 1 | -16/+22 |
| | | | | | found by Ulrich Spoerlein <uqs at freebsd> using the clang static analyzer; "ok, but please document the numbers" kristaps@ | ||||
* | Do not leak information about the software used | Ingo Schwarze | 2011-03-07 | 1 | -2/+0 |
| | | | | | | | | | into PostScript and PDF documents behind the user's back. Joerg Sonnenberger pointed out that almost all software creating PostScript and PDF documents does so, even on OpenBSD, but that doesn't make the leakage much better in my book. According to all standards i could find, this information is optional. Issue originally reported by deraadt@; "commit!" kristaps@. | ||||
* | Clean up date handling, | Ingo Schwarze | 2011-03-07 | 17 | -179/+153 |
| | | | | | | | | | | | | as a first step to get rid of the frequent petty warnings in this area: - always store dates as strings, not as seconds since the Epoch - for input, try the three most common formats everywhere - for unrecognized format, just pass the date though verbatim - when there is no date at all, still use the current date Originally triggered by a one-line patch from Tim van der Molen, <tbvdm at xs4all dot nl>, which is included here. Feedback and OK on manual parts from jmc@. "please check this in" kristaps@ | ||||
* | date handling needs cleanup | Ingo Schwarze | 2011-02-27 | 1 | -1/+9 |
| | |||||
* | Allow compilation with pcc, which has interesting/broken handling of -W | Kristaps Dzonsons | 2011-02-24 | 1 | -4/+4 |
| | | | | with missing function prototypes. Ok joerg@. | ||||
* | Clean up the COMPATIBILITY section; | Ingo Schwarze | 2011-02-09 | 1 | -22/+30 |
| | | | | | | | | | heavily based on a patch from kristaps@ with some tweaks by me. - Also talk about -Tps and -Tpdf. - Use the same list style as in the other mandoc manuals. - Replace a few macros by ones better suited. - Some improvements of wording. ok jmc@ kristaps@ | ||||
* | Add stub for eqn.7 manual and flip it on. Also note COMPATIBILITY issue | Kristaps Dzonsons | 2011-02-09 | 7 | -14/+114 |
| | | | | of how we considered .TS (etc.) macros and how the preprocessors do. | ||||
* | EQN blocks are now printed in all modes. This is simply a printing of | Kristaps Dzonsons | 2011-02-09 | 6 | -8/+31 |
| | | | | the concatenated string (in -T[x]html, it gets a SPAN, too). | ||||
* | Consolidate "rc" value in main.c around addspan, addeqn, and parseln. | Kristaps Dzonsons | 2011-02-09 | 1 | -13/+13 |
| | |||||
* | Allow -man to process EQN as well. Also fix a segfault in missing case | Kristaps Dzonsons | 2011-02-09 | 8 | -3/+41 |
| | | | | statements in the post-handler for EQN in -mdoc and -man. | ||||
* | Allow EQN data to be pushed down into libmdoc via mdoc_addeqn(). Only | Kristaps Dzonsons | 2011-02-09 | 10 | -6/+46 |
| | | | | the adding itself is implemented; equation data is not yet shown. | ||||
* | Put tbl_alloc function right into the addspan() one, as this is the only | Kristaps Dzonsons | 2011-02-08 | 2 | -38/+17 |
| | | | | place that it's called. | ||||
* | The macro .Ns has no effect at the beginning of an input line; | Ingo Schwarze | 2011-02-07 | 2 | -9/+11 |
| | | | | ok kristaps@ jmc@. | ||||
* | Fix a regression caused by mdoc_term.c 1.214 / mdoc_html.c 1.148: | Ingo Schwarze | 2011-02-06 | 2 | -3/+7 |
| | | | | | Inside .Bk or inside the SYNOPSIS, Unix variant macros cleared the keep flag. | ||||
* | Some pre-handlers produce output, so reorder the code to set up | Ingo Schwarze | 2011-02-06 | 1 | -20/+25 |
| | | | | | | keep flags before they are called. Without this bugfix, .Bk was ineffective in some cases. "looks reasonable" kristaps@ | ||||
* | Use tbl_span line number for warnings/errors. | Kristaps Dzonsons | 2011-02-06 | 2 | -3/+2 |
| | |||||
* | Let the line-number of a tbl_span be remembered. | Kristaps Dzonsons | 2011-02-06 | 5 | -16/+15 |
| | |||||
* | Add initial libmdoc and libman top-most machinery for accepting TBL | Kristaps Dzonsons | 2011-02-06 | 9 | -1/+29 |
| | | | | | directives. For now this will just ignore them (except for -Ttree, which just notes that an EQN's been accepted). | ||||
* | Add initial EQN support to mandoc. This parses, then throws away, data | Kristaps Dzonsons | 2011-02-06 | 7 | -12/+175 |
| | | | | | | | | between EQ and EN roff blocks. EQN is different from TBL in that data after .EQ is unilaterally considered an equation until an .EN. Thus, there's no need to jump through hoops in having table spans and so on. This is ONLY the parse code framework in libroff. EQN is not yet passed into the backends. | ||||
* | TODO note on that `.TS', `.TE' etc. aren't real roff macros and troff | Kristaps Dzonsons | 2011-02-03 | 1 | -0/+6 |
| | | | | won't recognise them when invoked as e.g. `. TS' (we, however, do). | ||||
* | If `Ns' is specified on its own line, it should be ignored. This is | Kristaps Dzonsons | 2011-02-02 | 7 | -7/+20 |
| | | | | | shitty groff behaviour. Do the same, but raise a warning to this effect. This from a TODO noted by schwarze@. | ||||
* | Note an error found in the wild. | Kristaps Dzonsons | 2011-01-31 | 1 | -0/+3 |
| | |||||
* | Implement the \N'number' (numbered character) roff escape sequence. | Ingo Schwarze | 2011-01-30 | 7 | -3/+117 |
| | | | | | | | Don't use it in new manuals, it is inherently non-portable, but we need it for backward-compatibility with existing manuals, for example in Xenocara driver pages. ok kristaps@ jmc@ and tested by Matthieu Herrb (matthieu at openbsd dot org) | ||||
* | When in a <PRE>, don't print out the <BR> before lines that have leading | Kristaps Dzonsons | 2011-01-29 | 2 | -4/+19 |
| | | | | whitespace. | ||||
* | Remove unnecessary conditional... | Kristaps Dzonsons | 2011-01-25 | 2 | -4/+2 |
| | |||||
* | Arguments to `Bsx' and friends are separated by a non-breaking space. | Kristaps Dzonsons | 2011-01-25 | 3 | -6/+13 |
| | | | | This removes a TODO raised by schwarze@. | ||||
* | Push capitalisation of `Bx' second argument into validator, where it belongs. | Kristaps Dzonsons | 2011-01-25 | 3 | -15/+25 |
| | |||||
* | Properly uppercase the first-letter of the `Bx' second argument. | Kristaps Dzonsons | 2011-01-25 | 2 | -5/+15 |
| | |||||
* | Have `Bx' accept two arguments, not just one, and join these arguments | Kristaps Dzonsons | 2011-01-25 | 4 | -18/+36 |
| | | | | with "xxBSD-yy" | ||||
* | Avoid double blank line before a table preceded by .PP. | Ingo Schwarze | 2011-01-25 | 1 | -0/+3 |
| | | | | ok kristaps@ | ||||
* | Since tbl_data() can now produce multiple spans, let parsebuf() | Ingo Schwarze | 2011-01-25 | 4 | -10/+20 |
| | | | | | | | generate man(7) or mdoc(7) nodes for all these spans, not only for the last one. Restores the horizontal lines in the cpu(4/hppa) tables. ok kristaps@ | ||||
* | Do not skip data after horizontal lines in the layout. | Ingo Schwarze | 2011-01-25 | 1 | -16/+44 |
| | | | | | | | | | | Instead, let one line of input data add two new spans to the tbl tree during one single call of tbl_data(). Note that this causes the horizontal line to get parsed into the tbl tree, but not yet used in the output, which will be fixed next. Avoids data loss in cpu(4/hppa). ok kristaps@ | ||||
* | correct horizontal spacing of data cells | Ingo Schwarze | 2011-01-25 | 2 | -9/+12 |
| | | | | | | correct alignment of centered cells adjust horizontal rule width to the new spacing ok kristaps@ | ||||
* | If %B is specified, quote %T. Noted by schwarze@ in the TODO. | Kristaps Dzonsons | 2011-01-25 | 4 | -10/+5 |
| | |||||
* | Ignore .ns (no-space mode), .ps (change point size), .ta (tab control) | Ingo Schwarze | 2011-01-25 | 2 | -0/+20 |
| | | | | | | for now. All of these just cause a bit too much or too little whitespace, but no serious formatting problems. Triggered by reports from brad@. | ||||
* | As noticed by deraadt@, it goes without saying that text files | Ingo Schwarze | 2011-01-25 | 3 | -10/+0 |
| | | | | | | on a UNIX system use UNIX conventions, and UNIX tools working on them expect that. ok jmc@ | ||||
* | Skip carriage return before newline, if any. | Ingo Schwarze | 2011-01-24 | 1 | -3/+20 |
| | | | | | | As pointed out by Joerg Sonnenberger, this is useful because we use mmap(3) and look for '\n' by hand. "check it in" kristaps@ | ||||
* | Better explain roff(7) macro argument quoting; | Ingo Schwarze | 2011-01-24 | 2 | -6/+42 |
| | | | | ok jmc@. | ||||
* | results of some systematic comparisons | Ingo Schwarze | 2011-01-24 | 1 | -1/+94 |
| | |||||
* | not implemented: adjustment | Ingo Schwarze | 2011-01-23 | 1 | -0/+13 |
| | |||||
* | Fix another regression caused by the reorg of print_man_node() in rev. 1.97: | Ingo Schwarze | 2011-01-23 | 1 | -0/+3 |
| | | | | End-of-sentence spacing got lost for man(7) after plain text lines. | ||||
* | some more reports from brad@ | Ingo Schwarze | 2011-01-22 | 1 | -0/+10 |
| | |||||
* | missing: .ns, .UR; reported by brad@ | Ingo Schwarze | 2011-01-22 | 1 | -4/+8 |
| |