[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] odd interaction between .bl and .(c in -me macros
From: |
Tadziu Hoffmann |
Subject: |
Re: [Groff] odd interaction between .bl and .(c in -me macros |
Date: |
Mon, 2 Jan 2012 12:24:49 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
> You could instead patch "bl" to do this itself [...]
I just noticed that we have to restrict embedding of macros to
non-top-level diversions only, because whatever is embedded at
the top level is passed on to the postprocessor, which in this
case (understandably) complains that it doesn't understand what
it is getting. So here's a better solution:
.de bl
.br
address@hidden \\$1
.sp \\$1
..
.de @s
.ne \\$1
.rs
.if !'\\n(.z'' address@hidden \\$1
..
The idea of this is that the space-testing macro "@s"
recursively embeds itself in diversion after diversion,
until the diversion is finally output to the page (the
top-level diversion).