diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 83a239ec..243edc07 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 663, + BUILD_REVISION => 664, BUILD_DATE => "2014-06-20", }; diff --git a/modules/c2english/CGrammar.pm b/modules/c2english/CGrammar.pm index 48b20894..3ed359d6 100644 --- a/modules/c2english/CGrammar.pm +++ b/modules/c2english/CGrammar.pm @@ -1444,9 +1444,9 @@ string: /(?:\"(?:\\\"|(?!\").)*\")/ reserved: - 'int' | 'double' | 'short' | 'volatile' | 'register' | 'float' | 'signed' + ('int' | 'double' | 'short' | 'volatile' | 'register' | 'float' | 'signed' | 'unsigned' | 'char' | 'for' | 'if' | 'switch' | 'while' | 'do' | 'case' | 'extern' | 'void' | 'exit' | 'return' | 'auto' | 'break' | 'const' | 'continue' | 'default' | 'else' | 'enum' | 'struct' | 'goto' | 'long' - | 'register' | 'sizeof' | 'static' | 'typedef' | 'union' + | 'register' | 'sizeof' | 'static' | 'typedef' | 'union') /\z/