|
|
@ -368,7 +368,7 @@ func CompDebug(msg string) {
|
|
|
|
|
|
|
|
|
|
|
|
if debug {
|
|
|
|
if debug {
|
|
|
|
// Must print to stderr for this not to be read by the completion script.
|
|
|
|
// Must print to stderr for this not to be read by the completion script.
|
|
|
|
fmt.Fprintf(os.Stderr, msg)
|
|
|
|
fmt.Fprintln(os.Stderr, msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -389,7 +389,7 @@ func CompError(msg string) {
|
|
|
|
// If not already printed by the call to CompDebug().
|
|
|
|
// If not already printed by the call to CompDebug().
|
|
|
|
if !debug {
|
|
|
|
if !debug {
|
|
|
|
// Must print to stderr for this not to be read by the completion script.
|
|
|
|
// Must print to stderr for this not to be read by the completion script.
|
|
|
|
fmt.Fprintf(os.Stderr, msg)
|
|
|
|
fmt.Fprintln(os.Stderr, msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|