]> Cypherpunks repositories - gostls13.git/commitdiff
exp/terminal: rename terminal.go to util.go
authorAdam Langley <agl@golang.org>
Fri, 11 Nov 2011 16:18:45 +0000 (11:18 -0500)
committerAdam Langley <agl@golang.org>
Fri, 11 Nov 2011 16:18:45 +0000 (11:18 -0500)
(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
src/pkg/exp/terminal/util.go [moved from src/pkg/exp/terminal/terminal.go with 100% similarity]

index 40331d6e406bb352ca608ed748476d77df3ad486..6368d61364792e4a78eeb88f0b182de3d5f52f2c 100644 (file)
@@ -9,7 +9,7 @@ GOFILES=\
        shell.go\
 
 ifneq ($(GOOS),windows)
-GOFILES+=terminal.go
+GOFILES+=util.go
 endif
 
 include ../../../Make.pkg