diff --git a/libs/ruamoko/rua_obj.c b/libs/ruamoko/rua_obj.c index 964db55b8..280c240a8 100644 --- a/libs/ruamoko/rua_obj.c +++ b/libs/ruamoko/rua_obj.c @@ -912,6 +912,7 @@ rua_obj_msg_sendv (progs_t *pr) int count = args->count; func_t imp = obj_msg_lookup (pr, receiver, op); + //FIXME bounds checking if (!imp) PR_RunError (pr, "%s does not respond to %s", PR_GetString (pr, object_get_class_name (pr, receiver)), diff --git a/ruamoko/cl_menu/controls_o.qc b/ruamoko/cl_menu/controls_o.qc index 56b6c1afc..0a946dc32 100644 --- a/ruamoko/cl_menu/controls_o.qc +++ b/ruamoko/cl_menu/controls_o.qc @@ -41,7 +41,7 @@ Array movement_bindings; Array misc_bindings; Array weapon_bindings; -struct binding_s = { +struct binding_s { string text; string command; string keys; diff --git a/ruamoko/include/draw.h b/ruamoko/include/draw.h index 78a635f54..89402eedc 100644 --- a/ruamoko/include/draw.h +++ b/ruamoko/include/draw.h @@ -3,7 +3,7 @@ #include "Object.h" -struct _qpic_t = { +struct _qpic_t { integer width; integer height; }; diff --git a/ruamoko/include/gui/InputLine.h b/ruamoko/include/gui/InputLine.h index 62e38753a..b1201001a 100644 --- a/ruamoko/include/gui/InputLine.h +++ b/ruamoko/include/gui/InputLine.h @@ -3,7 +3,7 @@ #include "View.h" -struct _inputline_t = {}; // opaque type :) +struct _inputline_t {}; // opaque type :) typedef struct _inputline_t [] inputline_t; @extern inputline_t (integer lines, integer size, integer prompt) InputLine_Create; @@ -16,7 +16,7 @@ typedef struct _inputline_t [] inputline_t; @extern void (inputline_t il, string str) InputLine_SetText; @extern string (inputline_t il) InputLine_GetText; -struct il_data_t = { +struct il_data_t { integer x, y; integer xbase, ybase; BOOL cursor; diff --git a/ruamoko/include/hash.h b/ruamoko/include/hash.h index 648d7a6e5..23fe6734f 100644 --- a/ruamoko/include/hash.h +++ b/ruamoko/include/hash.h @@ -1,7 +1,7 @@ #ifndef __ruamoko_hash_h #define __ruamoko_hash_h -struct _hashtab_t = {}; +struct _hashtab_t {}; typedef struct _hashtab_t [] hashtab_t; @extern hashtab_t (integer size, string (void []ele, void []data) gk, void (void []ele, void []data) f, void [] ud) Hash_NewTable; diff --git a/ruamoko/include/qfile.h b/ruamoko/include/qfile.h index 8acb8b265..ea7fcc2c7 100644 --- a/ruamoko/include/qfile.h +++ b/ruamoko/include/qfile.h @@ -1,7 +1,7 @@ #ifndef __ruamoko_qfile_h #define __ruamoko_qfile_h -struct _qfile_t = {}; +struct _qfile_t {}; typedef struct _qfile_t [] QFile; @extern integer (string old, string new) Qrename; diff --git a/ruamoko/include/qfs.h b/ruamoko/include/qfs.h index f5b424a17..c1397025f 100644 --- a/ruamoko/include/qfs.h +++ b/ruamoko/include/qfs.h @@ -3,7 +3,7 @@ #include "qfile.h" -struct _qfslist_t = { +struct _qfslist_t { integer count; string []list; }; diff --git a/ruamoko/lib/List.r b/ruamoko/lib/List.r index 6b32e5a2f..b1c63322a 100644 --- a/ruamoko/lib/List.r +++ b/ruamoko/lib/List.r @@ -1,6 +1,6 @@ #include "List.h" -struct list_bucket_s = { +struct list_bucket_s { struct list_bucket_s [] next; struct list_bucket_s [][] prev; id obj; diff --git a/ruamoko/scheme/state.h b/ruamoko/scheme/state.h index 17752673b..39e13ac53 100644 --- a/ruamoko/scheme/state.h +++ b/ruamoko/scheme/state.h @@ -7,7 +7,7 @@ @class Continuation; -struct state_s = { +struct state_s { instruction_t [] program; lineinfo_t [] lineinfo; integer pc; diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 4914a6b77..f64591b7d 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -231,9 +231,9 @@ def | storage_class '{' simple_defs '}' ';' { current_storage = st_global; } | STRUCT identifier - { current_struct = new_struct ($2); } opt_eq '{' struct_defs '}' ';' { } + { current_struct = new_struct ($2); } '{' struct_defs '}' ';' { } | UNION identifier - { current_struct = new_union ($2); } opt_eq '{' struct_defs '}' ';' { } + { current_struct = new_union ($2); } '{' struct_defs '}' ';' { } | STRUCT identifier ';' { decl_struct ($2); } | UNION identifier ';' { decl_union ($2); } | ENUM '{' enum_list opt_comma '}' ';' @@ -247,11 +247,6 @@ def } ; -opt_eq - : /* empty */ { } - | '=' { } - ; - opt_semi : /* empty */ | ';'