merge
This commit is contained in:
commit
43aee8b0b0
1
build.sh
1
build.sh
|
@ -34,7 +34,6 @@ cp -r "$DOCS" "$RELEASEDIR"
|
|||
|
||||
mkdir -p $RELEASEDIR/$PLUGINDIR
|
||||
cp -r $BUILDDIR/$PLUGINFILE $RELEASEDIR/$PLUGINDIR/$PLUGINFILE
|
||||
cp -r license.txt $RELEASEDIR/$DOCS/license.txt
|
||||
|
||||
# Make release package.
|
||||
echo "Compressing files..."
|
||||
|
|
|
@ -279,8 +279,11 @@ stock ParamParseString(buffer[][ParamParseResult], maxlen, String:paramString[],
|
|||
// Check if the current character is a special character.
|
||||
if (paramString[startpos] == '"')
|
||||
{
|
||||
// Toggle quote.
|
||||
quoteon = !quoteon;
|
||||
// Toggle quote if the current quote is not escaped.
|
||||
if (paramString[startpos - 1] != '\\')
|
||||
{
|
||||
quoteon = !quoteon;
|
||||
}
|
||||
|
||||
// Check quote state.
|
||||
if (quoteon)
|
||||
|
|
Loading…
Reference in New Issue
Block a user