summaryrefslogtreecommitdiff
path: root/config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'config.cc')
-rw-r--r--config.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.cc b/config.cc
index a7afd152..d77472e5 100644
--- a/config.cc
+++ b/config.cc
@@ -3,6 +3,7 @@
#include "option.h"
#include "datetime.h"
#include "quotes.h"
+#include "valexpr.h"
#include "walk.h"
#ifdef USE_BOOST_PYTHON
#include "py_eval.h"
@@ -647,6 +648,8 @@ OPT_BEGIN(end, "e:") {
config.predicate += "d<[";
config.predicate += buf;
config.predicate += "]";
+
+ terminus = interval.end;
} OPT_END(end);
OPT_BEGIN(current, "c") {
@@ -811,6 +814,8 @@ OPT_BEGIN(period, "p:") {
config.predicate += "d<[";
config.predicate += buf;
config.predicate += "]";
+
+ terminus = interval.end;
}
} OPT_END(period);