aboutsummaryrefslogtreecommitdiff
path: root/compiler.c
diff options
context:
space:
mode:
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, '[')) {