summaryrefslogtreecommitdiff
path: root/src/cmd
AgeCommit message (Collapse)AuthorFilesLines
2009-11-11fix BUFSIZ redeclaration warningsRuss Cox5-5/+5
R=r http://codereview.appspot.com/152085
2009-11-11cc: correct handling of allocn(0, 1, d)Russ Cox1-2/+1
Fixes issue 29. R=r http://codereview.appspot.com/152076
2009-11-11gotest: add LC_ALL=CRuss Cox1-0/+1
R=r http://codereview.appspot.com/154067
2009-11-11getc/ungetc in assemblers; BUFSIZ everywhere.Russ Cox5-0/+14
Fixes issue 67. R=r http://codereview.appspot.com/154068
2009-11-11two gopack nits.Russ Cox1-0/+4
1. allocate an extra byte for use by write. 2. throw away the code trying to translate uid and gid to names. i suspect it of causing seg faults in some situations, and it is not needed by the compilers. Fixes issue 48. (I hope.) R=r http://codereview.appspot.com/152077
2009-11-11avoid clash with stdio's getc, ungetc.Russ Cox2-0/+8
Fixes issue 50. R=r http://codereview.appspot.com/154064
2009-11-11gc: increase maximum path size in getwd from 100 to 1000.Russ Cox1-2/+2
Fixes issue 31. To try the fix before the next release: hg pull -u R=r1, r http://codereview.appspot.com/154058
2009-11-11gopack: convert long to time_t before taking a pointer.Adam Langley1-1/+3
Fixes issue 40. R=rsc, r1 CC=golang-dev http://codereview.appspot.com/154057
2009-11-10gotest: avoid problems with grepping for ยทRuss Cox1-0/+5
Fixes issue 7. R=r CC=golang-dev http://codereview.appspot.com/154043
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer9-97/+97
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1024040
2009-11-09error rewording suggested by robert.Russ Cox1-8/+3
update comment. R=ken http://go/go-review/1025031
2009-11-09TBR:Robert Griesemer1-1/+1
fix typo that prevented function bodies from being indexed (ouch!) R=rsc http://go/go-review/1024035
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer14-582/+582
R=rsc, r http://go/go-review/1025029
2009-11-09tweak documentation of commandsRuss Cox23-34/+33
so that first sentence is better for cmd page. live at http://r45:3456/cmd/ R=gri, r http://go/go-review/1024034
2009-11-08- exit godoc w/o crashing if negative tabwidth is providedRobert Griesemer1-10/+9
- minor related cleanups R=rsc http://go/go-review/1025026
2009-11-08Addressing issue brought up by dsymonds:Robert Griesemer2-17/+42
- When providing alternative spellings to a query, do not prefix it with a package qualifier as the suggestion may not have any results. Correctly filtering is quite a bit of work, and clicking the alternative spelling will always also show the qualified hits if they exist (but also others). Seems good enough for now. - Give user feedback when the query syntax was wrong. - Package names in search results are now links to the respective package documentation. - Experimented with excluding main packages and test files from index with inconclusive results. Code is present and can be enabled by changing a flag in the source. This needs some more work. R=rsc CC=r, dsymonds http://go/go-review/1026033
2009-11-08bug212, bug213.Russ Cox3-10/+26
R=ken http://go/go-review/1026032
2009-11-08improved sentence extraction:Robert Griesemer1-10/+28
- don't forget first periods - look at capitalization of last char before periods R=rsc http://go/go-review/1024027
2009-11-08a nagging inconsistency: capitalization ofRuss Cox3-49/+49
HTML vs Html, URL vs Url, HTTP vs Http, current source is 6:1 in favor of the former, so change instances of the latter. R=r CC=go-dev http://go/go-review/1024026
2009-11-08assorted cleanupRuss Cox1-1/+1
R=r, iant CC=go-dev http://go/go-review/1025024
2009-11-08use grouping instead of colors to show non-global search hits:Robert Griesemer2-70/+119
- introduced a new run per file containing all spots belonging to the same kind (e.g. var decl, const decl, etc.) - more comments, better index.go file organization R=rsc http://go/go-review/1026028
2009-11-08fix sentence extractionRobert Griesemer1-6/+13
R=rsc http://go/go-review/1026027
2009-11-08- properly align package synopsesRobert Griesemer1-31/+153
(this was surprisingly hard to get right in HTML) - show modification times in source directory listings - various tweaks R=rsc http://go/go-review/1024024
2009-11-08TBRRobert Griesemer1-1/+1
1st step of renaming dirList.html -> dirlist.html (OS X filenames are not capitalization-sensitive) R=rsc http://go/go-review/1024021
2009-11-08- better support for text files: show them nicely formattedRobert Griesemer1-21/+88
instead of serving them raw - path-related cleanups R=rsc http://go/go-review/1026021
2009-11-07- avoid division-by-zero crash in tabwriterRobert Griesemer1-0/+4
- correct tabwidth argument for some tabwriter test cases - catch negative tabwidth flag in gofmt w/o crashing R=rsc http://go/go-review/1026022
2009-11-07- added link to sourcesRobert Griesemer1-5/+5
- renamed listing.html -> dirList.html (there is a dirs.html already, it should probably have a better name, too) R=rsc http://go/go-review/1025020
2009-11-07nice directory listingsRobert Griesemer1-9/+46
R=rsc http://go/go-review/1026020
2009-11-07- support to extract one-line package synopsis for package listingsRobert Griesemer1-2/+25
- formatting in dirs.html is crude, needs better html (open to suggestions), but shows the synopsis - many package comments should probably be adjusted such that the first sentence is more concise R=rsc, iant http://go/go-review/1025014
2009-11-068g optimizerKen Thompson9-14/+2499
R=rsc http://go/go-review/1025011
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer6-99/+33
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-11-06updated godoc documentationRobert Griesemer1-3/+17
R=r http://go/go-review/1026007
2009-11-06fix argument order bug for floatKai Backman1-2/+1
R=rsc http://go/go-review/1025006
2009-11-06with rsc: argsize rounding to 8 smashes stack data on 32bit machines.Kai Backman1-1/+5
R=rsc http://go/go-review/1024011
2009-11-05 make 5g executables run on android/arm hardware. change OABIKai Backman1-1/+1
usage to EABI. go/test: passes 85% (296/347) on random android phone. R=rsc http://go/go-review/1024003
2009-11-05gofmt src/cmd/goyaccRobert Griesemer1-583/+445
(with this change: gofmt -l src/cmd/ | wc is 0 0 0) R=ken, rsc http://go/go-review/1024005
2009-11-05gofmt'ed src/cmdRobert Griesemer4-32/+32
R=rsc http://go/go-review/1024004
2009-11-05gofmt'ed godefsRobert Griesemer1-11/+11
R=rsc http://go/go-review/1020001
2009-11-05gofmt'ed 6l 8l cgoRobert Griesemer3-27/+29
R=r http://go/go-review/1020002
2009-11-05codereview: new commandsRuss Cox1-15/+18
* clpatch * download * submit, on behalf of clpatch stir hgpatch to fix a few bugs R=r CC=go-dev http://go/go-review/1016051
2009-11-05forgot a piece of debuggingKen Thompson1-18/+2
in previous change R=rsc http://go/go-review/1017052
2009-11-05same speedup as 6lKen Thompson5-71/+170
R=rsc http://go/go-review/1016050
2009-11-05new command hgpatch, for use by codereview extensionRuss Cox4-1/+425
R=r http://go/go-review/1018059
2009-11-04speed up 6lKen Thompson5-46/+126
hopefully no change R=rsc http://go/go-review/1017035
2009-11-04doc doc docRuss Cox4-1/+168
R=r http://go/go-review/1016039
2009-11-04stylistic issues in a couple of cmd docsRob Pike2-2/+2
R=rsc http://go/go-review/1017028
2009-11-04document godoc and gofmtRob Pike2-0/+84
R=rsc http://go/go-review/1018036
2009-11-04remove reference to /home/rRobert Griesemer1-1/+1
R=rsc http://go/go-review/1018039
2009-11-03document gotestRob Pike1-0/+49
R=rsc CC=go-dev http://go/go-review/1017026
2009-11-03add goyacc to the buildRob Pike1-1/+1
R=rsc CC=go-dev http://go/go-review/1018034