diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2020-04-01 21:56:18 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 02:56:18 +0200 |
commit | afd0afe0a3febc5ed2888dbca23e75c06741668e (patch) | |
tree | 008636a6bd5c1688ee34eb8346250aa39345efec /lib | |
parent | 9102ac8c7dda7abf6efee4cf0e104d415894e730 (diff) | |
download | Nim-afd0afe0a3febc5ed2888dbca23e75c06741668e.tar.gz |
Deprecate when declared(echo):echo (#13840)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 92575e5f3..1472d4e3d 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -892,7 +892,7 @@ elif not defined(useNimRtl): # Parent process. Copy process information. if poEchoCmd in options: - when declared(echo): echo(command, " ", join(args, " ")) + echo(command, " ", join(args, " ")) result.id = pid result.exitFlag = false |