aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/default_regex.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-08-10 06:23:36 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commitbdf20b225b1e8c5f5f37e9e9a2c52854c2789b03 (patch)
treeb70e9239aa4d99fcb52398b5a92bf81f459cff8d /org/default_regex.org
parentconfig (& metadata) instruction tables (diff)
a couple of small fixes
Diffstat (limited to 'org/default_regex.org')
-rw-r--r--org/default_regex.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/org/default_regex.org b/org/default_regex.org
index f255bb6..a45f373 100644
--- a/org/default_regex.org
+++ b/org/default_regex.org
@@ -89,7 +89,7 @@ static comments = ctRegex!(`^%+ |^%+$`);
#+BEGIN_SRC d
/+ header +/
static make_simple_substitutions_rb = ctRegex!(`(?P<substitution>/(?P<match>.+?)/,[ ]*['"](?P<replace>.+?)['"])`);
-static make_simple_substitutions_d = ctRegex!(`(?P<substitution>``(?P<match>.+?)``,[ ]*['"](?P<replace>.+?)['"])`);
+static make_simple_substitutions_d = ctRegex!(`(?P<substitution>` ~ '`' ~ `(?P<match>.+?)` ~ '`' ~ `,[ ]*['"](?P<replace>.+?)['"])`);
#+END_SRC
** native headers