From d08f57e68c2343822ebd449b4bc234a657ee56f3 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Fri, 11 Nov 2011 11:18:45 -0500 Subject: [PATCH] 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 --- src/pkg/exp/terminal/Makefile | 2 +- src/pkg/exp/terminal/{terminal.go => util.go} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/pkg/exp/terminal/{terminal.go => util.go} (100%) 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