Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(223)

Delta Between Two Patch Sets: src/pkg/exec/lp_windows.go

Issue 4607052: code review 4607052: os.Error API: don't export os.ErrorString, use os.NewEr... (Closed)
Left Patch Set: diff -r 3a5f42c956e0 https://go.googlecode.com/hg/ Created 13 years, 9 months ago
Right Patch Set: diff -r 6e3e06fb2dc3 https://go.googlecode.com/hg/ Created 13 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/exec/lp_unix.go ('k') | src/pkg/fmt/print.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package exec 5 package exec
6 6
7 import ( 7 import (
8 "os" 8 "os"
9 "strings" 9 "strings"
10 ) 10 )
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 68 }
69 } else { 69 } else {
70 for _, dir := range strings.Split(pathenv, `;`, -1) { 70 for _, dir := range strings.Split(pathenv, `;`, -1) {
71 if f, err = findExecutable(dir+`\`+file, exts); err == n il { 71 if f, err = findExecutable(dir+`\`+file, exts); err == n il {
72 return 72 return
73 } 73 }
74 } 74 }
75 } 75 }
76 return ``, &Error{file, ErrNotFound} 76 return ``, &Error{file, ErrNotFound}
77 } 77 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b