From edeffd64e9597695777c0dc8b588bdf8a8b14d96 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 27 Nov 2012 18:31:01 +0900 Subject: [PATCH] Fix a missed obj_module_s/_t from the class cleanup. Doesn't seem to have caused any problems, but still :) --- tools/qfcc/source/qc-lex.l | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/qfcc/source/qc-lex.l b/tools/qfcc/source/qc-lex.l index feb9e7a89..f0a10cbe2 100644 --- a/tools/qfcc/source/qc-lex.l +++ b/tools/qfcc/source/qc-lex.l @@ -299,10 +299,9 @@ static keyword_t keywords[] = { {"enum", ENUM, 0, 0, PROG_ID_VERSION, 0}, {"typedef", TYPEDEF, 0, 0, PROG_ID_VERSION, 0}, - // these two are a hack to trigger the initialization of the class + // this is a hack to trigger the initialization of the class // sytem if they are seen before any other Objective-QC symbol - {"obj_module_s", 0, 0, 0, PROG_VERSION, 1}, - {"obj_module_t", 0, 0, 0, PROG_VERSION, 1}, + {"obj_module", 0, 0, 0, PROG_VERSION, 1}, {"@class", CLASS, 0, 0, PROG_VERSION, 1}, {"@defs", DEFS, 0, 0, PROG_VERSION, 1},