aboutsummaryrefslogtreecommitdiff
path: root/compiler.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-09-16 20:41:38 -0700
committerBruce Hill <bruce@bruce-hill.com>2020-09-16 20:41:38 -0700
commitae76deaeb2c25a41a71b9e3e1dd92e25abd2677f (patch)
treeeb0edb934cc7cd2811ab6c46d933e5e642f26e50 /compiler.c
parentf35d3c98b22ac3c708672493d27267de071989cd (diff)
Removed old code
Diffstat (limited to 'compiler.c')
-rw-r--r--compiler.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler.c b/compiler.c
index 99ff44f..fe7ad3f 100644
--- a/compiler.c
+++ b/compiler.c
@@ -252,10 +252,6 @@ vm_op_t *bpeg_simplepattern(file_t *f, const char *str)
}
// Capture
case '@': {
- if (matchchar(&str, '@')) { // @@ -> current position
- op->op = VM_POSITION;
- break;
- }
op->op = VM_CAPTURE;
str = after_spaces(str);
if (matchchar(&str, '[')) {