.ig
Test passing of arguments with quotes in them from one macro to another
..
.de xx
.yy \\$1
..
.de yy
Argument is: <\\$1>
.br
.shift
Other args are: <\\$*>
.br
..
should be "aa" with no remainder:
.br
.xx aa
should be "aa" with remainder "bb":
.br
.xx "aa bb"
should be "aa bb" with no remainder:
.br
.xx "aa\ bb"
