update dependencies

This commit is contained in:
Cory Bennett
2017-09-06 11:35:00 -07:00
parent 9453179251
commit aa876cd588
308 changed files with 46154 additions and 33733 deletions
+1 -1
View File
@@ -84,8 +84,8 @@ quote:
inQuote = true
}
buf.WriteString(word[0:i])
word = word[i+1:]
}
word = word[i+1:]
if inQuote {
buf.WriteByte('\'')
inQuote = false
+1
View File
@@ -27,4 +27,5 @@ var simpleJoinTest = []struct {
{[]string{"one", "", "three"}, "one '' three"},
{[]string{"some(parentheses)"}, "some\\(parentheses\\)"},
{[]string{"$some_ot~her_)spe!cial_*_characters"}, "\\$some_ot~her_\\)spe\\!cial_\\*_characters"},
{[]string{"' "}, "\\'' '"},
}