summaryrefslogtreecommitdiff
path: root/src/scope.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-06-18 22:18:17 +1000
committerMaxime Coste <mawww@kakoune.org>2019-06-19 23:04:16 +1000
commit8b2906a14d3395a6619c7e40d3206b75eef11b25 (patch)
treed559789c90745dd538751bd163791860ddfecb48 /src/scope.cc
parent59e43c8f0c2d125952c8bad3b1b0c9053046926d (diff)
Refactor option_to_string quoting support, introduce Quoting::Raw
Diffstat (limited to 'src/scope.cc')
-rw-r--r--src/scope.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scope.cc b/src/scope.cc
index fab7ed0d..79da998c 100644
--- a/src/scope.cc
+++ b/src/scope.cc
@@ -19,7 +19,7 @@ void GlobalScope::on_option_changed(const Option& option)
{
Context empty_context{Context::EmptyContextFlag{}};
hooks().run_hook(Hook::GlobalSetOption,
- format("{}={}", option.name(), option.get_as_string(Quoting::Kakoune)),
+ format("{}={}", option.name(), option.get_as_string(Quoting::Raw)),
empty_context);
}