summaryrefslogtreecommitdiff
path: root/src/lib/unicode
AgeCommit message (Collapse)AuthorFilesLines
2009-06-09mv src/lib to src/pkgRob Pike5-1202/+0
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
2009-06-05rebuilt Makefiles for CL 29923Russ Cox1-14/+6
R=r DELTA=761 (1 added, 433 deleted, 327 changed) OCL=29927 CL=29966
2009-04-16Convert go tree to hierarchical pkg directory:Russ Cox1-9/+13
import ( "vector" -> "container/vector" "ast" -> "go/ast" "sha1" -> "hash/sha1" etc. ) and update Makefiles. Because I did the conversion semi-automatically, I sorted all the import blocks as a post-processing. Some files have therefore changed that didn't strictly need to. Rename local packages to lower case. The upper/lower distinction doesn't work on OS X and complicates the "single-package directories with the same package name as directory name" heuristic used by gobuild and godoc to create the correlation between source and binary locations. Now that we have a plan to avoid globally unique names, the upper/lower is unnecessary. The renamings will cause trouble for a few users, but so will the change in import paths. This way, the two maintenance fixes are rolled into one inconvenience. R=r OCL=27573 CL=27575
2009-04-16regenerate Makefiles.Russ Cox1-8/+17
fix bug in RPC.go (import "RPC" not "rpc.pb") R=r DELTA=483 (261 added, 64 deleted, 158 changed) OCL=27547 CL=27549
2009-03-26rename redefined symbolsRob Pike1-4/+4
R=iant DELTA=4 (0 added, 0 deleted, 4 changed) OCL=26802 CL=26811
2009-03-10add unicode data for decimal digit, preparatory to allowing them in identifiers.Rob Pike3-1/+436
R=rsc DELTA=431 (430 added, 0 deleted, 1 changed) OCL=25975 CL=26059
2009-03-06document unicode, such as it isRob Pike1-9/+18
R=rsc DELTA=18 (9 added, 0 deleted, 9 changed) OCL=25817 CL=25832
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox2-513/+513
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-13convert composite literals from { } to ( ).Russ Cox2-513/+513
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-01-20delete exportRuss Cox2-8/+8
TBR=r OCL=23121 CL=23127
2009-01-14add unicode library stub with justRuss Cox3-0/+753
IsUpper and IsLetter. R=r DELTA=746 (746 added, 0 deleted, 0 changed) OCL=22743 CL=22750