summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-07-24 22:41:41 +0200
committerMaxime Coste <frrrwww@gmail.com>2013-07-24 22:41:41 +0200
commit38c7197770cee9b179dc3f406f3e19436ae9a73f (patch)
tree228f744fdf7bd19699a91865a11b556d952c8230 /src/input_handler.cc
parentd29fb6f2c48e13e119c86db6bb152e0373c49377 (diff)
go back to : as set/list separator in options
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index bdee3b2b..1f947b66 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -554,7 +554,7 @@ static BufferCompletion complete_opt(const Buffer& buffer,
return {};
auto& desc = opt[0];
- static const Regex re(R"((\d+):(\d+)(?:\+(\d+))?@(\d+))");
+ static const Regex re(R"((\d+)\.(\d+)(?:\+(\d+))?@(\d+))");
boost::smatch match;
if (boost::regex_match(desc.begin(), desc.end(), match, re))
{