CompErrorln prints the specified completion message to stderr with a newline at the end.
(msg string)
| 985 | |
| 986 | // CompErrorln prints the specified completion message to stderr with a newline at the end. |
| 987 | func CompErrorln(msg string) { |
| 988 | CompError(fmt.Sprintf("%s\n", msg)) |
| 989 | } |
| 990 | |
| 991 | // These values should not be changed: users will be using them explicitly. |
| 992 | const ( |
no test coverage detected