]> git.sur5r.net Git - cc65/blobdiff - src/ca65/feature.c
Finished implemenation of commands to delete macros. Added the new commands to
[cc65] / src / ca65 / feature.c
index fbd5e1561107857f20b34dfbbe69f9a4a9e602de..e138bfe74a83e65bae7acfd4239c7793eb365911 100644 (file)
@@ -60,6 +60,7 @@ static const char* FeatureKeys[FEAT_COUNT] = {
     "pc_assignment",
     "missing_char_term",
     "ubiquitous_idents",
+    "c_comments",
 };
 
 
@@ -113,6 +114,7 @@ feature_t SetFeature (const StrBuf* Key)
        case FEAT_PC_ASSIGNMENT:              PCAssignment      = 1;    break;
         case FEAT_MISSING_CHAR_TERM:          MissingCharTerm   = 1;    break;
         case FEAT_UBIQUITOUS_IDENTS:          UbiquitousIdents  = 1;    break;
+        case FEAT_C_COMMENTS:                 CComments         = 1;    break;
        default:                         /* Keep gcc silent */          break;
     }