Changeset - r13803:c068678d064c
[Not reviewed]
master
0 3 0
rubidium - 15 years ago 2009-11-29 17:24:39
rubidium@openttd.org
(svn r18339) -Cleanup: remove SKIP support from strgen too
3 files changed with 0 insertions and 7 deletions:
0 comments (0 inline, 0 general)
src/strings.cpp
Show inline comments
 
@@ -801,10 +801,6 @@ static char *FormatString(char *buff, co
 
				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}
src/table/control_codes.h
Show inline comments
 
@@ -68,7 +68,6 @@ enum StringControlCode {
 
	SCC_STRING4,
 
	SCC_STRING5,
 

	
 
	SCC_SKIP,
 
	SCC_STRING,
 
	SCC_COMMA,
 
	SCC_NUM,
src/table/strgen_tables.h
Show inline comments
 
@@ -85,8 +85,6 @@ static const CmdStruct _cmd_structs[] = 
 
	{"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},
 

	
0 comments (0 inline, 0 general)