diff options
author | John Ankarström <john@ankarstrom.se> | 2021-06-19 20:28:30 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-06-19 20:28:30 +0200 |
commit | 78c198f7fbfab1fd286be067ca8639ccad06f35e (patch) | |
tree | 48f30f426f106577f0414e1a27c38b3627f34a60 | |
parent | f702e46e23302bba7ad3286d0ca273863ada380d (diff) | |
download | mk-78c198f7fbfab1fd286be067ca8639ccad06f35e.tar.gz |
Fix control character in third argument to inline macros
-rw-r--r-- | g.tmac | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -210,7 +210,7 @@ ___________________ . .\" b -- bold font .de b -\$3\fB\$1\fP\$2 +\&\$3\fB\$1\fP\$2 .. . .\" c -- constant-width font @@ -222,7 +222,7 @@ ___________________ . nr _s \n(.s . _E . -\$3\c +\&\$3\c . fam \*[_fam] . ps \n(_s \$1\c @@ -233,12 +233,12 @@ ___________________ . .\" i -- italic font .de i -\$3\fI\$1\fP\$2 +\&\$3\fI\$1\fP\$2 .. . .\" x -- bold italic font .de x -\$3\f(BI\$1\fP\$2 +\&\$3\f(BI\$1\fP\$2 .. . . |