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:
parent
89873e60e2
commit
8ab2c98972
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user