]> Shamusworld >> Repos - rmac/blobdiff - mark.c
Multiple fixes for 020+ mode, including:
[rmac] / mark.c
diff --git a/mark.c b/mark.c
index 088263b2c0271d795f33b043046fda331f01bd97..664e318f5790e53eddd7103597a774eebcba4750 100644 (file)
--- 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);
        }