diff options
| author | Stephen Kennedy | 2008-07-04 11:56:31 +0000 | 
|---|---|---|
| committer | Stephen Kennedy | 2008-07-04 11:56:31 +0000 | 
| commit | 3b73b199a6006a84df06453335354e4e6728f6af (patch) | |
| tree | 6920bc4d8341fe67643a7295b4e0b5612f221a88 | |
| parent | 8240e5b96d072fda2f84abdf84c27cf90ee891a5 (diff) | |
| download | scummvm-rg350-3b73b199a6006a84df06453335354e4e6728f6af.tar.gz scummvm-rg350-3b73b199a6006a84df06453335354e4e6728f6af.tar.bz2 scummvm-rg350-3b73b199a6006a84df06453335354e4e6728f6af.zip  | |
- XMLParser - small improvement to allow "key=value" syntax as well as "key = value" syntax
svn-id: r32906
| -rw-r--r-- | common/xmlparser.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xmlparser.h b/common/xmlparser.h index 167d04249c..3738b69b7b 100644 --- a/common/xmlparser.h +++ b/common/xmlparser.h @@ -283,7 +283,7 @@ protected:  		while (isValidNameChar(_text[_pos]))  			_token += _text[_pos++]; -		return isspace(_text[_pos]) != 0 || _text[_pos] == '>'; +		return isspace(_text[_pos]) != 0 || _text[_pos] == '>' || _text[_pos] == '=';  	}  	/**  | 
