diff --git a/assemble.c b/assemble.c index e26c005..b162147 100644 --- a/assemble.c +++ b/assemble.c @@ -766,6 +766,17 @@ static int assemble( free_tree(value); } else if (strcmp(label, "B") == 0 || strcmp(label, "NB") == 0) { + /* + * Page 6-46 footnote 1 says + * "A macro argument (a form of symbolic argument) + * is enclosed within angle brackets or delimited + * by the circumflex construction, as described in + * section 7.3. For example, + * + * ^/124/" + * but we don't enforce that here (yet) by using + * simply getstring(). + */ cp = skipwhite(cp); if (EOL(*cp)) { ok = 1; diff --git a/extree.c b/extree.c index 37970cc..57444a6 100644 --- a/extree.c +++ b/extree.c @@ -1,5 +1,3 @@ -#define EXTREE__C - #include #include #include