changeset 13813:81c1dddb20de draft

(svn r18339) -Cleanup: remove SKIP support from strgen too
author rubidium <rubidium@openttd.org>
date Sun, 29 Nov 2009 17:24:39 +0000
parents 1778cc944569
children 301108e43a55
files src/strings.cpp src/table/control_codes.h src/table/strgen_tables.h
diffstat 3 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -801,10 +801,6 @@
 				break;
 			}
 
-			case SCC_SKIP: // {SKIP}
-				argv++;
-				break;
-
 			/* This sets up the gender for the string.
 			 * We just ignore this one. It's used in {G 0 Der Die Das} to determine the case. */
 			case SCC_GENDER_INDEX: // {GENDER 0}
--- a/src/table/control_codes.h
+++ b/src/table/control_codes.h
@@ -68,7 +68,6 @@
 	SCC_STRING4,
 	SCC_STRING5,
 
-	SCC_SKIP,
 	SCC_STRING,
 	SCC_COMMA,
 	SCC_NUM,
--- a/src/table/strgen_tables.h
+++ b/src/table/strgen_tables.h
@@ -85,8 +85,6 @@
 	{"DATE_LONG",       EmitSingleChar, SCC_DATE_LONG,          1, C_NONE},
 	{"DATE_ISO",        EmitSingleChar, SCC_DATE_ISO,           1, C_NONE},
 
-	{"SKIP",            EmitSingleChar, SCC_SKIP,               1, C_NONE},
-
 	{"STRING",          EmitSingleChar, SCC_STRING,             1, C_CASE},
 	{"RAW_STRING",      EmitSingleChar, SCC_RAW_STRING_POINTER, 1, C_NONE},