summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-08-25 01:34:50 +0200
committerAraq <rumpf_a@web.de>2012-08-25 01:34:50 +0200
commit9a7f0cd8510a534a3f1e9d4275b8abd7825a94c6 (patch)
treef862293603c58003d24997781959820366284e8e /lib/pure
parent8a92e95ccfb2653d8cea52a83c26ac8967557062 (diff)
downloadNim-9a7f0cd8510a534a3f1e9d4275b8abd7825a94c6.tar.gz
bindSym suffices; no 'bind' for macros anymore
Diffstat (limited to 'lib/pure')
-rwxr-xr-xlib/pure/terminal.nim3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/pure/terminal.nim b/lib/pure/terminal.nim
index 5a82586cb..d24d81112 100755
--- a/lib/pure/terminal.nim
+++ b/lib/pure/terminal.nim
@@ -326,8 +326,7 @@ proc styledEchoProcessArg(color: TForegroundColor) = setForeGroundColor color
 proc styledEchoProcessArg(color: TBackgroundColor) = setBackGroundColor color

 

 macro styledEcho*(m: stmt): stmt =
-  bind styledEchoProcessArg, write, resetAttributes, stdout
-  
+  ## to be documented.
   result = newNimNode(nnkStmtList)

 

   for i in countup(1, m.len - 1):