summaryrefslogtreecommitdiff
path: root/src/pkg/strconv/quote.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+310
2011-09-13Imported Upstream version 60Ondřej Surý1-310/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-2/+4
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-41/+85
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-6/+7
2010-03-29strconv.Unquote could wrongly return a nil error on error.Roger Peppe1-1/+1
R=rsc, gri CC=golang-dev http://codereview.appspot.com/773041 Committer: Robert Griesemer <gri@golang.org>
2009-12-151) Change default gofmt default settings forRobert Griesemer1-67/+67
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 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox1-7/+7
R=r, gri CC=golang-dev http://codereview.appspot.com/156115
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-8/+8
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-38/+38
R=rsc, r http://go/go-review/1025029
2009-11-01misc cleanupRuss Cox1-40/+39
R=r http://go/go-review/1016017
2009-10-07apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync ↵Russ Cox1-16/+16
syscall testing time unicode unsafe utf8 R=gri DELTA=1409 (79 added, 24 deleted, 1306 changed) OCL=35415 CL=35437
2009-08-31rearrange some constants. unicode package now defines MaxRune and ↵Rob Pike1-1/+2
ReplacementChar. utf8 package imports unicode to get those definitions. regenerate dependencies. R=rsc DELTA=41 (19 added, 3 deleted, 19 changed) OCL=34123 CL=34129
2009-06-23publish strconv.UnquoteCharRuss Cox1-24/+58
R=r DELTA=69 (37 added, 3 deleted, 29 changed) OCL=30661 CL=30667
2009-06-09mv src/lib to src/pkgRob Pike1-0/+229
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102