1.Dd December 30, 2014
2.Dt DE-STARTDE 1
3.Os OpenBSD
4.Sh NAME
5.Nm de-startde
6.Nd macro starting a macro definition, but not ending it
7.Sh DESCRIPTION
8define outer macro:
9.de outer
10outer macro called; define inner macro:
11.de inner
12inner macro called; end outer scope.
13..
14outer scope ended; outer macro now defined.
15.Pp
16call outer macro:
17.outer
18returned from call of outer macro; end inner scope.
19..
20inner scope ended; inner macro now defined.
21.Pp
22call inner macro:
23.inner
24returned from call of inner macro.
25