From: Adam Langley Date: Fri, 11 Nov 2011 16:18:45 +0000 (-0500) Subject: exp/terminal: rename terminal.go to util.go X-Git-Tag: weekly.2011-11-18~110 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d08f57e68c2343822ebd449b4bc234a657ee56f3;p=gostls13.git exp/terminal: rename terminal.go to util.go (This is part of removing the duplicate code between exp/terminal and exp/ssh, but hg is having a very hard time keeping up so I'm doing it in small steps.) R=bradfitz, rsc CC=golang-dev https://golang.org/cl/5373061 --- diff --git a/src/pkg/exp/terminal/Makefile b/src/pkg/exp/terminal/Makefile index 40331d6e40..6368d61364 100644 --- a/src/pkg/exp/terminal/Makefile +++ b/src/pkg/exp/terminal/Makefile @@ -9,7 +9,7 @@ GOFILES=\ shell.go\ ifneq ($(GOOS),windows) -GOFILES+=terminal.go +GOFILES+=util.go endif include ../../../Make.pkg diff --git a/src/pkg/exp/terminal/terminal.go b/src/pkg/exp/terminal/util.go similarity index 100% rename from src/pkg/exp/terminal/terminal.go rename to src/pkg/exp/terminal/util.go