]> Cypherpunks repositories - gostls13.git/log
gostls13.git
15 years agogodocs.js: fix bad variable name
Russ Cox [Sun, 15 Nov 2009 20:57:33 +0000 (12:57 -0800)]
godocs.js: fix bad variable name

Thanks to anno.langen.
Fixes #103.

R=r
https://golang.org/cl/155050

15 years agomakefiles: use correct gcc order in case --as-needed is in use.
Russ Cox [Sun, 15 Nov 2009 20:57:28 +0000 (12:57 -0800)]
makefiles: use correct gcc order in case --as-needed is in use.

Suggested by eostapets.
Fixes #141.

R=r
https://golang.org/cl/155049

15 years agocgo: arrange for English error messages
Russ Cox [Sun, 15 Nov 2009 20:57:21 +0000 (12:57 -0800)]
cgo: arrange for English error messages

Fixes #21.

R=r
https://golang.org/cl/155048

15 years agoruntime: avoid crash in Caller
Russ Cox [Sun, 15 Nov 2009 20:57:15 +0000 (12:57 -0800)]
runtime: avoid crash in Caller

Fixes #176.

R=r
https://golang.org/cl/154146

15 years agogc: five bug fixes, one better error.
Russ Cox [Sun, 15 Nov 2009 20:57:09 +0000 (12:57 -0800)]
gc: five bug fixes, one better error.

* check for struct literal assignment to private fields.
* record, fix crash involving parallel map assignment.
* avoid infinite recursion in exportassignok.
* make floating point bounds check precise.
* avoid crash on invalid receiver.

* add context to error about implicit assignment.

Fixes #86.
Fixes #88.
Fixes #158.
Fixes #174.
Fixes #201.
Fixes #204.

R=ken2
https://golang.org/cl/154144

15 years agohttp.URLEscape: escape all bytes required by RFC 2396
Russ Cox [Sun, 15 Nov 2009 20:56:50 +0000 (12:56 -0800)]
http.URLEscape: escape all bytes required by RFC 2396

Fixes #125.

R=r
https://golang.org/cl/154143

15 years agogotest: show the test file pattern in "no test files" error
Russ Cox [Sun, 15 Nov 2009 20:56:39 +0000 (12:56 -0800)]
gotest: show the test file pattern in "no test files" error

Fixes #190.

R=r
https://golang.org/cl/154142

15 years agofix some typos in the documentation
Rob Pike [Sun, 15 Nov 2009 20:09:59 +0000 (12:09 -0800)]
fix some typos in the documentation

Fixes #196.

R=rsc
https://golang.org/cl/154152

15 years agofix bug in bytes.Map and add test cases for Map in both strings and bytes packages.
Rob Pike [Sun, 15 Nov 2009 20:07:27 +0000 (12:07 -0800)]
fix bug in bytes.Map and add test cases for Map in both strings and bytes packages.
thanks to ulrik.sverdrup for the test case.

Fixes #191.

R=rsc
CC=golang-dev
https://golang.org/cl/155056

15 years agoUse // to start comment instead of #.
Robert Griesemer [Sun, 15 Nov 2009 19:33:20 +0000 (11:33 -0800)]
Use // to start comment instead of #.
Fixes #189.

R=r
CC=rsc
https://golang.org/cl/155055

15 years agocc: drop redundant strcpy
Russ Cox [Sun, 15 Nov 2009 08:00:05 +0000 (00:00 -0800)]
cc: drop redundant strcpy

Fixes #192.

R=ken2
https://golang.org/cl/155047

15 years agocc: eliminate two fixed-size buffers
Russ Cox [Sun, 15 Nov 2009 07:25:55 +0000 (23:25 -0800)]
cc: eliminate two fixed-size buffers

Fixes bug 168.
Alternative to https://golang.org/cl/152143.

R=ken2
https://golang.org/cl/155042

15 years agocomplain if GOARCH != arm. fix build break caused by gomake
Kai Backman [Sun, 15 Nov 2009 07:08:22 +0000 (23:08 -0800)]
complain if GOARCH != arm. fix build break caused by gomake
introduction.

R=rsc
https://golang.org/cl/152109

15 years agocrypto/rsa: handle the case of non-coprime blinds.
Adam Langley [Sun, 15 Nov 2009 04:38:00 +0000 (20:38 -0800)]
crypto/rsa: handle the case of non-coprime blinds.

We are dealing with the multiplicative group ℤ/pqℤ. Multiples of
either p or q are not members of the group since they cannot have an
inverse. (Such numbers are 0 in the subgroup ℤ/pℤ.)

With p and q of typical size (> 512 bits), the probability of a random
blind [1..pq-1] being a multiple of p or q is negligible. However, in
the unit tests, much smaller sizes are used and the event could occur.

This change checks the result of the ext GCD and deals with this case.

It also increases the size of p and q in the unit test as a large
number of the keys selected were p, q = 227,169.

R=rsc
CC=golang-dev
https://golang.org/cl/154141

15 years agomake arm pass match what's working on real hardware
Kai Backman [Sun, 15 Nov 2009 04:08:22 +0000 (20:08 -0800)]
make arm pass match what's working on real hardware

R=rsc
https://golang.org/cl/154097

15 years agotest/interface/receiver.go: expand to do dynamic
Russ Cox [Sun, 15 Nov 2009 03:28:13 +0000 (19:28 -0800)]
test/interface/receiver.go: expand to do dynamic
versions of static checks in receiver1.go

R=r
https://golang.org/cl/155045

15 years agoBuild changes to support work on the BSDs.
Devon H. O'Dell [Sat, 14 Nov 2009 23:29:09 +0000 (15:29 -0800)]
Build changes to support work on the BSDs.

This does still contain some FreeBSD-specific bits, but
it's a pain to do partial diffs.

R=rsc
https://golang.org/cl/152138

15 years agoAdding myself to AUTHORS/CONTRIBUTORS for Go.
Devon H. O'Dell [Sat, 14 Nov 2009 23:28:47 +0000 (15:28 -0800)]
Adding myself to AUTHORS/CONTRIBUTORS for Go.

R=rsc
https://golang.org/cl/155041

15 years agoencoding/binary: implemented the Write function
Môshe van der Sterre [Sat, 14 Nov 2009 22:42:22 +0000 (14:42 -0800)]
encoding/binary: implemented the Write function
The ByteOrder.Put* methods are already available, this change uses
them to implement the Write function.

R=golang-dev, agl1, rsc, r
https://golang.org/cl/152141

15 years agoAdding my name to CONTRIBUTORS and AUTHORS
Môshe van der Sterre [Sat, 14 Nov 2009 22:42:15 +0000 (14:42 -0800)]
Adding my name to CONTRIBUTORS and AUTHORS
As Adam Langley mentioned, this should go in with
https://golang.org/cl/152141

R=rsc
CC=agl1
https://golang.org/cl/154138

15 years agogc: do not try to constant-evaluate (interface{})("bar")
Russ Cox [Sat, 14 Nov 2009 22:14:27 +0000 (14:14 -0800)]
gc: do not try to constant-evaluate (interface{})("bar")

Fixes #183.

R=ken
https://golang.org/cl/154139

15 years agomove evaluation of null-matching instructions one iteration earlier.
Rob Pike [Sat, 14 Nov 2009 20:23:24 +0000 (12:23 -0800)]
move evaluation of null-matching instructions one iteration earlier.
performance hit of about 20% but more intuitive results for submatches.
we need a good regexp package at some point.

Fixes #110.

R=rsc
CC=golang-dev
https://golang.org/cl/152131

15 years ago xml: Fixed CDATA parsing.
Abhinav Gupta [Sat, 14 Nov 2009 19:46:09 +0000 (11:46 -0800)]
xml: Fixed CDATA parsing.

    Fixes #128.

R=r, rsc
https://golang.org/cl/154126

15 years agoAdded self to AUTHORS and CONTRIBUTORS.
Abhinav Gupta [Sat, 14 Nov 2009 19:45:32 +0000 (11:45 -0800)]
Added self to AUTHORS and CONTRIBUTORS.

R=rsc
https://golang.org/cl/154128

15 years agotypos
Russ Cox [Sat, 14 Nov 2009 18:28:53 +0000 (10:28 -0800)]
typos

Fixes #171.
Fixes #172.

R=agl1
https://golang.org/cl/154136

15 years agoCreated new Conn.Flush() public method so the fd pipeline can be drained arbitrarily...
David Titarenco [Sat, 14 Nov 2009 02:06:47 +0000 (18:06 -0800)]
Created new Conn.Flush() public method so the fd pipeline can be drained arbitrarily by the user.
Commented both flush methods so people know what they are looking at.

This is a necessary fix for streaming and long polling HTTP services.
Fixes #93.

R=r, rsc, david.titarenco
https://golang.org/cl/154099

15 years agoAdded self to AUTHORS and CONTRIBUTORS prior to first submission.
David Titarenco [Sat, 14 Nov 2009 02:06:27 +0000 (18:06 -0800)]
Added self to AUTHORS and CONTRIBUTORS prior to first submission.

R=rsc
https://golang.org/cl/153057

15 years agoRemove unnecessary int(h) casts in image.go.
Nigel Tao [Sat, 14 Nov 2009 01:40:20 +0000 (17:40 -0800)]
Remove unnecessary int(h) casts in image.go.

R=rsc
https://golang.org/cl/154125

15 years agofix typo
Rob Pike [Sat, 14 Nov 2009 00:00:55 +0000 (16:00 -0800)]
fix typo

R=rsc
https://golang.org/cl/152128

15 years agoCorrect indentation for go-mode where a close brace following a semi-
James Aguilar [Fri, 13 Nov 2009 23:52:30 +0000 (15:52 -0800)]
Correct indentation for go-mode where a close brace following a semi-
colon-less statement would be indented one stop too many.

R=rsc, aclements
CC=aclements
https://golang.org/cl/154096

15 years agoAdd myself to the contributors file.
James Aguilar [Fri, 13 Nov 2009 23:52:24 +0000 (15:52 -0800)]
Add myself to the contributors file.

R=rsc
https://golang.org/cl/152101

15 years agojson: minor comment fix.
Adam Langley [Fri, 13 Nov 2009 22:59:04 +0000 (14:59 -0800)]
json: minor comment fix.

I screwed up and didn't write one of the code review changes to disk
before submitting.

TBR=rsc

R=rsc
https://golang.org/cl/154122

15 years agoExplain why
Rob Pike [Fri, 13 Nov 2009 21:15:18 +0000 (13:15 -0800)]
Explain why
-flag true
does not work although
-flag=true
does.

Fixes #139.

R=iant
CC=golang-dev
https://golang.org/cl/154118

15 years agotest/run: use bash, not sh.
Russ Cox [Fri, 13 Nov 2009 21:10:53 +0000 (13:10 -0800)]
test/run: use bash, not sh.
use bash builtin time instead of
assuming /usr/bin/time exists.

R=r
https://golang.org/cl/152124

15 years agojson: allow one to unmarshal a top-level JSON array.
Adam Langley [Fri, 13 Nov 2009 21:00:45 +0000 (13:00 -0800)]
json: allow one to unmarshal a top-level JSON array.

Fixies issue 114.

R=rsc
CC=golang-dev
https://golang.org/cl/154121

15 years agopath.TestWalk: disable error case if root
Russ Cox [Fri, 13 Nov 2009 19:34:33 +0000 (11:34 -0800)]
path.TestWalk: disable error case if root
(chmod 0 doesn't cause errors for root)

Fixes #22.

R=gri
https://golang.org/cl/152120

15 years agojson: fix addressing of slice indexes that are multiples of 8.
Adam Langley [Fri, 13 Nov 2009 19:29:13 +0000 (11:29 -0800)]
json: fix addressing of slice indexes that are multiples of 8.

Fixes #147.

R=rsc
CC=golang-dev
https://golang.org/cl/152123

15 years agoruntime: warn about SELinux based mmap failures on Linux.
Adam Langley [Fri, 13 Nov 2009 18:08:51 +0000 (10:08 -0800)]
runtime: warn about SELinux based mmap failures on Linux.

SELinux will cause mmap to fail when we request w+x memory unless the
user has configured their policies. We have a warning in make.bash,
but it's quite likely that the policy will be reset at some point and
then all their binaries start failing.

This patch prints a warning on Linux when mmap fails with EACCES.

R=rsc
CC=golang-dev
https://golang.org/cl/152086

15 years agoyet another attempt to avoid conflicts with
Russ Cox [Fri, 13 Nov 2009 07:38:48 +0000 (23:38 -0800)]
yet another attempt to avoid conflicts with
<stdio.h>, which we weren't even #including

R=r
https://golang.org/cl/154108

15 years agoremove dead code from test
Rob Pike [Fri, 13 Nov 2009 07:35:45 +0000 (23:35 -0800)]
remove dead code from test

R=rsc
CC=golang-dev
https://golang.org/cl/152118

15 years agosudo.bash tries to install acid and db, which don't exist any more
Rob Pike [Fri, 13 Nov 2009 07:19:12 +0000 (23:19 -0800)]
sudo.bash tries to install acid and db, which don't exist any more

R=rsc
CC=golang-dev
https://golang.org/cl/152117

15 years agoTeach emacs M-x gofmt to save region/restrictions
Kevin Ballard [Fri, 13 Nov 2009 02:40:42 +0000 (18:40 -0800)]
Teach emacs M-x gofmt to save region/restrictions

R=agl, agl1
https://golang.org/cl/152078

15 years agocodereview: clpatch tweaks
Russ Cox [Fri, 13 Nov 2009 02:37:39 +0000 (18:37 -0800)]
codereview: clpatch tweaks

R=agl1
https://golang.org/cl/152114

15 years agoRemove -align flag from gofmt.
Robert Griesemer [Fri, 13 Nov 2009 02:26:45 +0000 (18:26 -0800)]
Remove -align flag from gofmt.
(Making it work correctly with -spaces is a bit of work and the output
won't make much sense as it is intended as input to tabwriter.)
Fixes #100.

R=rsc
https://golang.org/cl/154102

15 years agofix style nit ignored in previous cl
Kai Backman [Fri, 13 Nov 2009 00:12:28 +0000 (16:12 -0800)]
fix style nit ignored in previous cl

R=rsc
https://golang.org/cl/152110

15 years agoadd support for pre arm v6 cas. set GOARM=5 to enable.
Kai Backman [Thu, 12 Nov 2009 23:23:23 +0000 (15:23 -0800)]
add support for pre arm v6 cas. set GOARM=5 to enable.

R=rsc
https://golang.org/cl/154101

15 years agotag new release at 4015/cb140bac9ab0
Russ Cox [Thu, 12 Nov 2009 23:12:52 +0000 (15:12 -0800)]
tag new release at 4015/cb140bac9ab0

R=r
https://golang.org/cl/154100

15 years agotest/run: unset GREP_OPTIONS weekly.2009-11-12
Russ Cox [Thu, 12 Nov 2009 22:55:26 +0000 (14:55 -0800)]
test/run: unset GREP_OPTIONS

Fixes #116.

R=r
https://golang.org/cl/152106

15 years agoos.TestSeek: use a smaller but still 64-bit seek offset.
Russ Cox [Thu, 12 Nov 2009 22:55:04 +0000 (14:55 -0800)]
os.TestSeek: use a smaller but still 64-bit seek offset.

Might fix issue 91.

R=r
https://golang.org/cl/152108

15 years agoproduce helpful error when gotest doesn't find a Makefile
Rob Pike [Thu, 12 Nov 2009 22:28:45 +0000 (14:28 -0800)]
produce helpful error when gotest doesn't find a Makefile

Fixes #117.

R=rsc, agl1
CC=golang-dev
https://golang.org/cl/152107

15 years agoadd a paragraph about semicolons to the tutorial.
Rob Pike [Thu, 12 Nov 2009 22:10:16 +0000 (14:10 -0800)]
add a paragraph about semicolons to the tutorial.
fix a typo caught by kakugawa@gmail.com

Fixes #92.

R=rsc
CC=golang-dev
https://golang.org/cl/152105

15 years agoexp/draw: correct Makefile.
Adam Langley [Thu, 12 Nov 2009 21:55:20 +0000 (13:55 -0800)]
exp/draw: correct Makefile.

Thanks to Allister Macleod

Fixes #112.

R=rsc
CC=golang-dev
https://golang.org/cl/152102

15 years agofix a couple of typos.
Rob Pike [Thu, 12 Nov 2009 19:05:20 +0000 (11:05 -0800)]
fix a couple of typos.
add a mention of range to the tutorial.
change tutorial's title.

R=rsc
CC=golang-dev
https://golang.org/cl/152098

15 years agocc, ld: fix more gcc 4.3 -O2 compile bugs
Russ Cox [Thu, 12 Nov 2009 08:22:45 +0000 (00:22 -0800)]
cc, ld: fix more gcc 4.3 -O2 compile bugs

same as https://golang.org/cl/152088
in more files.

Fixes #83.

R=r, r1
https://golang.org/cl/152091

15 years ago add cache flushing call after generating closure.
Kai Backman [Thu, 12 Nov 2009 07:23:11 +0000 (23:23 -0800)]
add cache flushing call after generating closure.

        go/test: passes 88% (306/347)

R=rsc
https://golang.org/cl/152089

15 years agoavoid seg fault when return type is unknown
Russ Cox [Thu, 12 Nov 2009 06:20:05 +0000 (22:20 -0800)]
avoid seg fault when return type is unknown

Fixes #80.

R=ken
https://golang.org/cl/154079

15 years agogopack: work around gcc bug in hash function
Russ Cox [Thu, 12 Nov 2009 06:19:58 +0000 (22:19 -0800)]
gopack: work around gcc bug in hash function

Fixes #48.  (this time for sure!)

R=r, r1
https://golang.org/cl/152088

15 years agofix typo in ByteSize example
Rob Pike [Thu, 12 Nov 2009 03:39:57 +0000 (19:39 -0800)]
fix typo in ByteSize example

R=rsc, agl1
CC=golang-dev
https://golang.org/cl/154076

15 years agoFix capitalisation of "Git".
David Symonds [Thu, 12 Nov 2009 01:31:28 +0000 (17:31 -0800)]
Fix capitalisation of "Git".

R=rsc
https://golang.org/cl/154071

15 years agovector: s/Element/interface{}/
Robert Griesemer [Thu, 12 Nov 2009 01:25:51 +0000 (17:25 -0800)]
vector: s/Element/interface{}/
Fixes #74.

R=rsc
https://golang.org/cl/154073

15 years agojson: support \u escaping in strings
Adam Langley [Thu, 12 Nov 2009 01:13:14 +0000 (17:13 -0800)]
json: support \u escaping in strings

Fixes #73.

R=rsc
CC=golang-dev
https://golang.org/cl/154072

15 years agocgo: add more information about gcc output parsing failures
Russ Cox [Thu, 12 Nov 2009 00:58:27 +0000 (16:58 -0800)]
cgo: add more information about gcc output parsing failures

R=r
https://golang.org/cl/152084

15 years agofix BUFSIZ redeclaration warnings
Russ Cox [Thu, 12 Nov 2009 00:33:23 +0000 (16:33 -0800)]
fix BUFSIZ redeclaration warnings

R=r
https://golang.org/cl/152085

15 years agofix TestRemoveAll again (tested as root this time).
Russ Cox [Wed, 11 Nov 2009 23:48:38 +0000 (15:48 -0800)]
fix TestRemoveAll again (tested as root this time).
Fixes #22.

R=r
https://golang.org/cl/154069

15 years agomake.bash: detect and warn about SELinux policy that crashes us.
Adam Langley [Wed, 11 Nov 2009 23:02:15 +0000 (15:02 -0800)]
make.bash: detect and warn about SELinux policy that crashes us.

The default SELinux policy on Fedora 12 (at least) disallows stack
pages to be +x. This causes all binaries written by 6g/6l to segfault
immedately. The 'true' way to fix this issue is to mark binaries with
the correct type. However, that assumes that 6l is going to detect
SELinux, figure out the correct type for the current distribution and
set the type (without libselinux).

For now we'll warn users and point them towards the way to enable
execstack for the whole system.

http://code.google.com/p/go/issues/detail?id=47

R=rsc
CC=golang-dev
http://codereview.prom.corp.google.com/1026041

15 years agotypo
Russ Cox [Wed, 11 Nov 2009 22:52:38 +0000 (14:52 -0800)]
typo

Fixes #69.

R=r
https://golang.org/cl/152082

15 years agoos test: do not use symlink > 255 bytes.
Russ Cox [Wed, 11 Nov 2009 22:52:29 +0000 (14:52 -0800)]
os test: do not use symlink > 255 bytes.

Fixes #62.

R=r
https://golang.org/cl/152080

15 years agocc: correct handling of allocn(0, 1, d)
Russ Cox [Wed, 11 Nov 2009 22:52:21 +0000 (14:52 -0800)]
cc: correct handling of allocn(0, 1, d)

Fixes #29.

R=r
https://golang.org/cl/152076

15 years agogotest: add LC_ALL=C
Russ Cox [Wed, 11 Nov 2009 22:52:15 +0000 (14:52 -0800)]
gotest: add LC_ALL=C

R=r
https://golang.org/cl/154067

15 years agogetc/ungetc in assemblers; BUFSIZ everywhere.
Russ Cox [Wed, 11 Nov 2009 22:52:08 +0000 (14:52 -0800)]
getc/ungetc in assemblers; BUFSIZ everywhere.

Fixes #67.

R=r
https://golang.org/cl/154068

15 years agopoint at how to get easy_install on Ubuntu.
Russ Cox [Wed, 11 Nov 2009 22:51:53 +0000 (14:51 -0800)]
point at how to get easy_install on Ubuntu.
Fixes #59.

Add note about export.

R=r
https://golang.org/cl/152079

15 years agotwo gopack nits.
Russ Cox [Wed, 11 Nov 2009 22:48:33 +0000 (14:48 -0800)]
two gopack nits.

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 #48.  (I hope.)

R=r
https://golang.org/cl/152077

15 years agoRevert make.bash which slipped into the previous revision.
Adam Langley [Wed, 11 Nov 2009 21:30:47 +0000 (13:30 -0800)]
Revert make.bash which slipped into the previous revision.

R=rsc
http://codereview.prom.corp.google.com/1024051

15 years agoReland a112249da741, this time with missing file.
Adam Langley [Wed, 11 Nov 2009 21:21:37 +0000 (13:21 -0800)]
Reland a112249da741, this time with missing file.

15 years agoavoid clash with stdio's getc, ungetc.
Russ Cox [Wed, 11 Nov 2009 21:08:35 +0000 (13:08 -0800)]
avoid clash with stdio's getc, ungetc.

Fixes #50.

R=r
https://golang.org/cl/154064

15 years agolog test: don't assume a fixed set of letters for $GOROOT
Russ Cox [Wed, 11 Nov 2009 21:07:46 +0000 (13:07 -0800)]
log test: don't assume a fixed set of letters for $GOROOT

Fixes #27.

R=r
https://golang.org/cl/152075

15 years agoroll back 3985: build is broken
Russ Cox [Wed, 11 Nov 2009 20:54:52 +0000 (12:54 -0800)]
roll back 3985: build is broken

TBR=agl1
CC=golang-dev
https://golang.org/cl/154065

15 years agobig:
Adam Langley [Wed, 11 Nov 2009 20:34:46 +0000 (12:34 -0800)]
big:
  Turn methods that don't store the result in their receiver into
    functions in order to preserve the convention.
  Re-jig Exp and Div by moving their guts into nat.go.
  Add ProbablyPrime to perform Miller-Rabin primality tests.
crypto/rsa: reenable key generation since we now have ProbablyPrime.

R=gri
CC=go-dev
http://codereview.prom.corp.google.com/1024038

15 years agowork with GNU Make 3.80
Russ Cox [Wed, 11 Nov 2009 20:00:50 +0000 (12:00 -0800)]
work with GNU Make 3.80

Fixes #30.

R=r1, r
https://golang.org/cl/154061

15 years agogc: increase maximum path size in getwd from 100 to 1000.
Russ Cox [Wed, 11 Nov 2009 20:00:41 +0000 (12:00 -0800)]
gc: increase maximum path size in getwd from 100 to 1000.

Fixes #31.

To try the fix before the next release:
hg pull -u

R=r1, r
https://golang.org/cl/154058

15 years agoos: do not test error case of TestRemoveAll when root
Russ Cox [Wed, 11 Nov 2009 20:00:34 +0000 (12:00 -0800)]
os: do not test error case of TestRemoveAll when root

Fixes #22.

R=r1, r
https://golang.org/cl/152073

15 years agouse fully qualified names for hash interfaces
Russ Cox [Wed, 11 Nov 2009 20:00:15 +0000 (12:00 -0800)]
use fully qualified names for hash interfaces

Fixes #38.

R=r1, r
https://golang.org/cl/152072

15 years agoadd a paragraph in the FAQ about the situation with Windows support
Rob Pike [Wed, 11 Nov 2009 19:44:27 +0000 (11:44 -0800)]
add a paragraph in the FAQ about the situation with Windows support

R=rsc, iant
CC=golang-dev
https://golang.org/cl/154059

15 years agogopack: convert long to time_t before taking a pointer.
Adam Langley [Wed, 11 Nov 2009 19:19:33 +0000 (11:19 -0800)]
gopack: convert long to time_t before taking a pointer.

Fixes #40.

R=rsc, r1
CC=golang-dev
https://golang.org/cl/154057

15 years agodocs: list make as a build dep.
Adam Langley [Wed, 11 Nov 2009 19:18:17 +0000 (11:18 -0800)]
docs: list make as a build dep.

Fixes #45.

R=rsc, r1
CC=golang-dev
https://golang.org/cl/154055

15 years agolib9: rip out platform specific code that breaks on pclinuxos
Russ Cox [Wed, 11 Nov 2009 07:42:21 +0000 (23:42 -0800)]
lib9: rip out platform specific code that breaks on pclinuxos

R=r
CC=golang-dev
https://golang.org/cl/154049

15 years agomove release tag
Russ Cox [Wed, 11 Nov 2009 04:11:16 +0000 (20:11 -0800)]
move release tag

R=r
https://golang.org/cl/154045

15 years agoImplement new emacs command M-x gofmt weekly.2009-11-10.1
Kevin Ballard [Wed, 11 Nov 2009 04:05:24 +0000 (20:05 -0800)]
Implement new emacs command M-x gofmt

Define a new interactive function in go-mode.el called gofmt.
This function passes the current buffer through the external `gofmt`
tool and replaces the buffer with the result.

R=agl, rsc
https://golang.org/cl/154044

15 years agoFix go-mode.el to work on empty buffers
Kevin Ballard [Wed, 11 Nov 2009 04:04:14 +0000 (20:04 -0800)]
Fix go-mode.el to work on empty buffers

Fixes #8.

R=agl, agl1, rsc
https://golang.org/cl/153056

15 years agoupdate old comment: things are much better now
Russ Cox [Wed, 11 Nov 2009 03:59:22 +0000 (19:59 -0800)]
update old comment: things are much better now

R=r
https://golang.org/cl/152057

15 years agogotest: avoid problems with grepping for ·
Russ Cox [Wed, 11 Nov 2009 03:56:32 +0000 (19:56 -0800)]
gotest: avoid problems with grepping for ·

Fixes #7.

R=r
CC=golang-dev
https://golang.org/cl/154043

15 years agoinstall.html: ed needs to be installed too
Russ Cox [Wed, 11 Nov 2009 03:34:31 +0000 (19:34 -0800)]
install.html: ed needs to be installed too

Fixes #14.

R=r
https://golang.org/cl/152052

15 years agomake.bash: check $PATH indirectly via which quietgcc
Russ Cox [Wed, 11 Nov 2009 03:20:34 +0000 (19:20 -0800)]
make.bash: check $PATH indirectly via which quietgcc

R=agl1
CC=golang-dev
https://golang.org/cl/152056

15 years agosanity check environment variables better.
Russ Cox [Wed, 11 Nov 2009 03:12:22 +0000 (19:12 -0800)]
sanity check environment variables better.

Fixes #12.

R=agl1
CC=golang-dev
https://golang.org/cl/152055

15 years agoAdding myself (Kevin Ballard) to the AUTHORS/CONTRIBUTORS files
Kevin Ballard [Wed, 11 Nov 2009 02:44:20 +0000 (18:44 -0800)]
Adding myself (Kevin Ballard) to the AUTHORS/CONTRIBUTORS files

R=rsc
https://golang.org/cl/153055

15 years agonet: fix error for connect to /etc/ on some systems
Russ Cox [Wed, 11 Nov 2009 02:27:26 +0000 (18:27 -0800)]
net: fix error for connect to /etc/ on some systems

R=agl1
CC=golang-dev
https://golang.org/cl/152051

15 years agofix final program to have Html->HTML
Rob Pike [Wed, 11 Nov 2009 02:24:06 +0000 (18:24 -0800)]
fix final program to have Html->HTML

R=rsc
CC=go-dev
https://golang.org/cl/152050

15 years agochange code review link to appspot.
Russ Cox [Wed, 11 Nov 2009 02:06:50 +0000 (18:06 -0800)]
change code review link to appspot.

R=r
https://golang.org/cl/153051

15 years agotest for invalid $GOBIN setting before trying to build
Russ Cox [Wed, 11 Nov 2009 02:00:48 +0000 (18:00 -0800)]
test for invalid $GOBIN setting before trying to build

R=r
CC=golang-dev
https://golang.org/cl/153049

15 years agonet: disable more ipv6 tests
Russ Cox [Wed, 11 Nov 2009 02:00:27 +0000 (18:00 -0800)]
net: disable more ipv6 tests

R=agl, agl1
CC=golang-dev
https://golang.org/cl/153050