Add comment on a format strictness. ...

Remove unneeded #define.
This commit is contained in:
Olaf Seibert 2016-10-22 15:13:34 +02:00
parent 2620a1e98f
commit 433e8ecda6
2 changed files with 11 additions and 2 deletions

View File

@ -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,
* <A,B,C>
* ^/124/"
* but we don't enforce that here (yet) by using
* simply getstring().
*/
cp = skipwhite(cp);
if (EOL(*cp)) {
ok = 1;

View File

@ -1,5 +1,3 @@
#define EXTREE__C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>