summary refs log tree commit diff
path: root/src/path
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@gmail.com>2020-12-26 03:39:27 -0800
committerIrene Knapp <ireneista@gmail.com>2020-12-26 03:39:27 -0800
commitbcd2e282af2b6cd7991d8d1c5ebef4e4e4a1c745 (patch)
tree49d3bf17844fcfacc34f4955aac18dc323a81bf6 /src/path
parent0448d438d13d1486fdbc678e54685e5c9b5a12b8 (diff)
some debug code in the middle of a regexp got checked in. oops.
Diffstat (limited to 'src/path')
-rw-r--r--src/path/parser.lalrpop2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path/parser.lalrpop b/src/path/parser.lalrpop
index 3547444..9705fc3 100644
--- a/src/path/parser.lalrpop
+++ b/src/path/parser.lalrpop
@@ -79,7 +79,7 @@ PathComponent: GenericPathComponent = {
 
 // Whitespace is not allowed.
 match {
-  r"[^z:/]+" => PATH_COMPONENT_NO_COLONS,
+  r"[^:/]+" => PATH_COMPONENT_NO_COLONS,
 
   r"/" => SLASH,