summaryrefslogtreecommitdiff
path: root/src/pkg/unicode/tables.go
AgeCommit message (Collapse)AuthorFilesLines
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg1-26/+39
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg1-1/+1
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg1-217/+566
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý1-3/+3
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-2930/+2933
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+6026
2011-09-13Imported Upstream version 60Ondřej Surý1-6106/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-101/+533
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-3800/+5119
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-181/+298
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-3417/+3417
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer1-31/+31
- only manual changes are in src/pkg/go/printer/nodes.go - use a heuristic to determine "outliers" such that not entire composites are forced to align with them - improves several places that were not unligned before due too simple heuristic - unalignes some cases that contain "outliers" - gofmt -w src misc Fixes issue 644. R=rsc, r CC=golang-dev http://codereview.appspot.com/241041
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-148/+148
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2009-12-151) Change default gofmt default settings forRobert Griesemer1-158/+158
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 5th and last set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180050
2009-12-01update package unicode to Unicode 5.2Rob Pike1-229/+592
R=rsc CC=golang-dev http://codereview.appspot.com/163062
2009-11-04gofmt-ify unicodeRobert Griesemer1-286/+286
R=r http://go/go-review/1018051
2009-08-31submitter's regret. rename Props to PropertiesRob Pike1-2/+2
R=rsc DELTA=9 (0 added, 0 deleted, 9 changed) OCL=34148 CL=34151
2009-08-31add property tablesRob Pike1-0/+831
R=rsc DELTA=1087 (1001 added, 78 deleted, 8 changed) OCL=34137 CL=34147
2009-08-30add the Upper/Lower sequence optimization.Rob Pike1-1002/+50
tables shrink 900 lines. mapping code gets a little slower R=rsc DELTA=1124 (105 added, 952 deleted, 67 changed) OCL=34079 CL=34089
2009-08-28first cut at case mapping tables and library.Rob Pike1-1/+1207
next cut will do the optimization for alternating sequences. R=rsc DELTA=1658 (1620 added, 9 deleted, 29 changed) OCL=34072 CL=34075
2009-08-28fix ", First" ", Last" ranges from UnicodeData.txtRob Pike1-14/+12
R=rsc DELTA=54 (38 added, 2 deleted, 14 changed) OCL=34032 CL=34040
2009-08-27improve generated code for godocabilityRob Pike1-231/+118
R=rsc DELTA=459 (168 added, 279 deleted, 12 changed) OCL=34005 CL=34007
2009-08-27add scripts tables to the unicode packageRob Pike1-32/+1097
R=rsc DELTA=1479 (1422 added, 1 deleted, 56 changed) OCL=33993 CL=33997
2009-08-27fix build. changing var to const, which it should be anyway,Rob Pike1-2/+2
implicitly works around 6g bug. R=rsc OCL=33953 CL=33953
2009-08-27unicode tables for all categoriesRob Pike1-0/+1840
maketables now has a --test option to verify the data. R=rsc DELTA=3087 (1982 added, 1001 deleted, 104 changed) OCL=33947 CL=33950