aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pc.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/pc.l b/pc.l
index f4f4366..15c6691 100644
--- a/pc.l
+++ b/pc.l
@@ -39,13 +39,13 @@ id [A-Za-z][A-Za-z0-9_]*
"procedure" {
debug_print(PROC, NULL);
- s = push_scope(s);
+ /*s = push_scope(s);*/
return PROC;
}
"function" {
debug_print(FUNC, NULL);
- s = push_scope(s);
+ /*s = push_scope(s);*/
return FUNC;
}