summary refs log tree commit diff stats
path: root/lib/nimbase.h
diff options
context:
space:
mode:
authorYuriy Glukhov <yuriy.glukhov@gmail.com>2015-08-12 12:04:26 +0300
committerYuriy Glukhov <yuriy.glukhov@gmail.com>2015-08-12 12:04:26 +0300
commitc42b05adb46e846cf56efedf44d1f02da769b2b7 (patch)
treef8b6b0b181f5d89a1f63a5c58bf71b9aeb52ea11 /lib/nimbase.h
parentd230b75e0a7cd49cf5c4e4f687515c296cd2ce5b (diff)
downloadNim-c42b05adb46e846cf56efedf44d1f02da769b2b7.tar.gz
Fixed --debugger:on option. Removed c_line from termios.
Diffstat (limited to 'lib/nimbase.h')
-rw-r--r--lib/nimbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h
index e796ba735..d3108812c 100644
--- a/lib/nimbase.h
+++ b/lib/nimbase.h
@@ -347,7 +347,7 @@ struct TFrame {
   FR.procname = proc; FR.filename = file; FR.line = 0; FR.len = 0; nimFrame(&FR);
 
 #define nimfrs(proc, file, slots, length) \
-  struct {TFrame* prev;NCSTRING procname;NI line;NCSTRING filename; NI len; TVarSlot s[slots];} FR; \
+  struct {TFrame* prev;NCSTRING procname;NI line;NCSTRING filename; NI len; VarSlot s[slots];} FR; \
   FR.procname = proc; FR.filename = file; FR.line = 0; FR.len = length; nimFrame((TFrame*)&FR);
 
 #define nimln(n, file) \