X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=mark.c;h=664e318f5790e53eddd7103597a774eebcba4750;hp=088263b2c0271d795f33b043046fda331f01bd97;hb=05d0350b35a6a6b255cb2a3fab7796f5d4ee4d02;hpb=03dd34951a331e0b8971195ccef1600fffaea2e6 diff --git a/mark.c b/mark.c index 088263b..664e318 100644 --- a/mark.c +++ b/mark.c @@ -90,18 +90,13 @@ if (symbol) // // Complain about some things are not allowed in '-p' (PRG) mode: - // o Marks that aren't to LONGs - // o External references + // o Marks that aren't to LONGs + // o External references // if (prg_flag) { -#if 0 - if ((flags & MLONG) == 0) - error("illegal word relocatable (in .PRG mode)"); -#endif - if (symbol != NULL) - errors("illegal external reference (in .PRG mode) to '%s'", + error("illegal external reference (in .PRG mode) to '%s'", symbol->sname); }