summaryrefslogtreecommitdiffstats
path: root/man_macro.c
Commit message (Expand)AuthorAgeFilesLines
* Cleanup, no functional change:Ingo Schwarze2018-12-141-1/+1
* Almost mechanical diff to remove the "struct mparse *" argumentIngo Schwarze2018-12-141-16/+14
* Major cleanup; may imply minor changes in edge cases of error reporting.Ingo Schwarze2018-12-141-0/+1
* Support nesting of elements with next-line scope.Ingo Schwarze2018-08-261-31/+36
* paragraphs can contain .MT and .UR blocksIngo Schwarze2018-08-181-1/+2
* .RE causes a line break even if .RS is not openIngo Schwarze2018-08-181-0/+6
* end of sentence detection after .ME and .UE, useful for some GNU manualsIngo Schwarze2018-08-181-0/+2
* Two consecutive .SY blocks only get a blank line in betweenIngo Schwarze2018-08-181-1/+8
* implement the GNU man-ext .SY/.YS (synopsis block) macro in man(7),Ingo Schwarze2018-08-181-0/+5
* Remove more pointer arithmetic passing via regions outside the arrayIngo Schwarze2018-08-171-9/+15
* implement the GNU man-ext .TQ macro in man(7),Ingo Schwarze2018-08-161-1/+2
* fix incomplete variable renaming in previous;Ingo Schwarze2018-08-151-1/+1
* support tail arguments on the .ME and .UE macros,Ingo Schwarze2018-08-141-16/+23
* add support for the MT and ME mailto macros, used for example in wg(8);Ingo Schwarze2017-06-251-0/+5
* if .in is used inside the .TP head, it's always relativeIngo Schwarze2017-06-171-1/+1
* Partial support for the \n[an-margin] number register.Ingo Schwarze2017-06-131-1/+14
* Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze2017-05-051-3/+1
* move .ll to the roff modulesIngo Schwarze2017-05-051-1/+0
* Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze2017-05-051-2/+1
* Parser reorg:Ingo Schwarze2017-05-041-3/+1
* Continue parser unification:Ingo Schwarze2017-04-241-17/+14
* unify names of AST node flags; no change of cpp outputIngo Schwarze2017-01-101-5/+5
* Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze2016-01-081-1/+1
* move man(7) validation into the dedicated validation phase, tooIngo Schwarze2015-10-221-18/+4
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-2/+2
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-1/+0
* Fill mode changes don't break next-line scope in all cases,Ingo Schwarze2015-09-041-2/+2
* Get rid of two empty wrapper functions. No functional change.Ingo Schwarze2015-04-231-2/+1
* Unify trickier node handling functions.Ingo Schwarze2015-04-191-4/+3
* Unify some node handling functions that use TOKEN_NONE.Ingo Schwarze2015-04-191-4/+4
* Unify node handling functions:Ingo Schwarze2015-04-191-6/+8
* Replace the structs mdoc and man by a unified struct roff_man.Ingo Schwarze2015-04-181-8/+8
* Vastly simplify man(7) block unwinding, similar to mdoc_macro.c 1.171.Ingo Schwarze2015-04-031-118/+33
* It turns out the man(7) parser suffers from unintelligible handlingIngo Schwarze2015-04-031-1/+1
* Second step towards parser unification:Ingo Schwarze2015-04-021-17/+16
* First step towards parser unification:Ingo Schwarze2015-04-021-28/+29
* The .PD macro can occur in next-line scope. Fixes zshmisc(1).Ingo Schwarze2015-03-201-1/+1
* Simplify by almost halving the number of macro flags:Ingo Schwarze2015-03-201-15/+17
* better error reporting regarding .OP .RS .UR .TH argumentsIngo Schwarze2015-02-061-16/+10
* better diagnostics about excess arguments to .PD .ft .spIngo Schwarze2015-02-061-0/+7
* better error reporting for .br .fi .nf with argumentsIngo Schwarze2015-02-061-0/+7
* preserve .PP before .RE; effect found in audio/pms(1)Ingo Schwarze2015-01-241-1/+12
* Strangely, ignoring the roff(7) .na request was implemented in the man(7)Ingo Schwarze2015-01-241-1/+0
* Support .RE with an argument; needed for audio/pms(1).Ingo Schwarze2015-01-241-2/+22
* Explicit block closure macros clobber next-line block head scope,Ingo Schwarze2014-12-161-2/+2
* Simplify by making many functions in the man(7) parser void,Ingo Schwarze2014-11-281-86/+53
* Allow the five man(7) font macros to concatenate their line arguments,Ingo Schwarze2014-11-031-7/+10
* When the first child of the node being validated gets deleted duringIngo Schwarze2014-08-181-1/+12
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-2/+2
* Improve handling of next-line scope broken by end of file.Ingo Schwarze2014-07-301-7/+29