aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_harvest_metadata.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-12-21 11:38:05 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2020-02-11 13:08:49 -0500
commit10ec5e96d65b58dbe915c2d622b0bfb8abbd122b (patch)
treef07e7b940b754a8133ff69c29596fcbcd327aef7 /org/out_harvest_metadata.org
parentxmls, minor, internal links (metadata, images) (diff)
reduce use of auto, much with tuples
Diffstat (limited to 'org/out_harvest_metadata.org')
-rw-r--r--org/out_harvest_metadata.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/org/out_harvest_metadata.org b/org/out_harvest_metadata.org
index 7a27ebf..4b7fe7e 100644
--- a/org/out_harvest_metadata.org
+++ b/org/out_harvest_metadata.org
@@ -58,7 +58,7 @@ import
#+name: metadoc_harvest_initialize
#+BEGIN_SRC d
-auto markup = InlineMarkup();
+static auto mkup = InlineMarkup();
#+END_SRC
** harvest summary
@@ -73,12 +73,12 @@ char_repeat_number = (char_repeat_number > min_repeat_number)
: min_repeat_number;
writefln(
"%s\n\"%s\", %s\n%s\n%s\n%s",
- markup.repeat_character_by_number_provided("-", char_repeat_number),
+ mkup.repeat_character_by_number_provided("-", char_repeat_number),
doc_matters.conf_make_meta.meta.title_full,
doc_matters.conf_make_meta.meta.creator_author,
doc_matters.src.filename,
doc_matters.conf_make_meta.meta.classify_topic_register_arr,
- markup.repeat_character_by_number_provided("-", char_repeat_number),
+ mkup.repeat_character_by_number_provided("-", char_repeat_number),
);
#+END_SRC
@@ -127,7 +127,7 @@ module doc_reform.meta.metadoc_harvests_topics;
mixin InternalMarkup;
mixin spineRgxInit;
template spineMetaDocHarvestsTopics() {
- auto mkup = InlineMarkup();
+ static auto mkup = InlineMarkup();
void spineMetaDocHarvestsTopics(H,M,O)(
H hvst,
M _make_and_meta_struct,
@@ -459,7 +459,7 @@ module doc_reform.meta.metadoc_harvests_authors;
mixin InternalMarkup;
mixin spineRgxInit;
template spineMetaDocHarvestsAuthors() {
- auto mkup = InlineMarkup();
+ static auto mkup = InlineMarkup();
void spineMetaDocHarvestsAuthors(H,M,O)(
H harvests,
M _make_and_meta_struct,