mirror of
https://github.com/golang/go
synced 2024-11-20 06:44:40 -07:00
exp/locale/collate: add context to entry.
R=r CC=golang-dev https://golang.org/cl/6727049
This commit is contained in:
parent
7dc1182c27
commit
bc0783dbe5
@ -607,7 +607,7 @@ func insertTailoring(t *build.Tailoring, r RuleElem, context, extend string) {
|
|||||||
if *test {
|
if *test {
|
||||||
testInput.add(str)
|
testInput.add(str)
|
||||||
}
|
}
|
||||||
err := t.Insert(lmap[l[0]], str, extend)
|
err := t.Insert(lmap[l[0]], str, context+extend)
|
||||||
failOnError(err)
|
failOnError(err)
|
||||||
}
|
}
|
||||||
case "pc", "sc", "tc", "ic":
|
case "pc", "sc", "tc", "ic":
|
||||||
@ -617,7 +617,7 @@ func insertTailoring(t *build.Tailoring, r RuleElem, context, extend string) {
|
|||||||
if *test {
|
if *test {
|
||||||
testInput.add(str)
|
testInput.add(str)
|
||||||
}
|
}
|
||||||
err := t.Insert(level, str, extend)
|
err := t.Insert(level, str, context+extend)
|
||||||
failOnError(err)
|
failOnError(err)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user