mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Make %var expansion actually work.
This commit is contained in:
parent
7eb2e42a3c
commit
00d71f13f6
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ GIB_Parse_Tokens (const char *program, unsigned int *i, unsigned int pofs,
|
|||
}
|
||||
// Check for array splitting
|
||||
// Concatenating this onto something else is non-sensical
|
||||
if (cur->delim == ' ' && str[0] == '@' && !cat) {
|
||||
if (cur->delim == ' ' && (str[0] == '@' || str[0] == '%') && !cat) {
|
||||
cur->flags |= TREE_SPLIT;
|
||||
}
|
||||
// We can handle escape characters now
|
||||
|
|
Loading…
Reference in a new issue