diff options
Diffstat (limited to 'org/default_regex.org')
-rw-r--r-- | org/default_regex.org | 2 |
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 |