Disable space skipping in argument of set

Change-Id: I9eb955c30ba06071fb36c3bb54001d53c4c7dd26
Bug: https://tree.taiga.io/project/jktjkt-netconf-cli/issue/148
diff --git a/src/grammars.hpp b/src/grammars.hpp
index 871d3c0..9f50634 100644
--- a/src/grammars.hpp
+++ b/src/grammars.hpp
@@ -273,7 +273,7 @@
     createIdentitySuggestions >> leaf_data_identityRef_data;
 
 auto const leaf_data_def =
-x3::expect[
+x3::no_skip[x3::expect[
     leaf_data_enum |
     leaf_data_decimal |
     leaf_data_bool |
@@ -287,7 +287,7 @@
     leaf_data_uint64 |
     leaf_data_binary |
     leaf_data_identityRef |
-    leaf_data_string];
+    leaf_data_string]];
 
 struct ls_options_table : x3::symbols<LsOption> {
     ls_options_table()