1
0
mirror of https://github.com/golang/go synced 2024-11-19 15:34:47 -07:00

os: fixed PathListSeparator to ';' for windows.

Fixed issue 1992

R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/4661047
This commit is contained in:
Yasuhiro Matsumoto 2011-06-24 15:00:59 +10:00 committed by Alex Brainman
parent 89873e60e2
commit 8ab2c98972

View File

@ -6,7 +6,7 @@ package os
const (
PathSeparator = '\\' // OS-specific path separator
PathListSeparator = ':' // OS-specific path list separator
PathListSeparator = ';' // OS-specific path list separator
)
// IsPathSeparator returns true if c is a directory separator character.