aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/meta_abstraction.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-09-27 18:05:34 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commitca5f6f3d4bf53a00f81c5323325b2e4e40489aeb (patch)
tree9b6679dbd5d1066ac6664a0c212f0a8b6eac2d24 /org/meta_abstraction.org
parentmeta_abstraction, work on ocn (diff)
fix for: gdc compiled program when run, segfaults on certain actions
Diffstat (limited to 'org/meta_abstraction.org')
-rw-r--r--org/meta_abstraction.org8
1 files changed, 3 insertions, 5 deletions
diff --git a/org/meta_abstraction.org b/org/meta_abstraction.org
index 1ddec75..322fb0c 100644
--- a/org/meta_abstraction.org
+++ b/org/meta_abstraction.org
@@ -54,6 +54,7 @@ template SiSUdocAbstraction() {
/+ ↓ loop markup document/text line by line +/
srcDocLoop:
foreach (line; markup_sourcefile_content) {
+ // "line" variable can be empty but should never be null
/+ ↓ markup document/text line by line +/
<<abs_in_loop_body_00>>
if (obj_type_status["code"] == TriState.on) {
@@ -1208,10 +1209,7 @@ if ((obj_type_status["heading"] == State.on)
processing.remove("verse");
++cntr;
} else {
- assert(
- line == null,
- "line variable should be empty, should not occur"
- );
+ // could be useful to test line variable should be empty and never null
}
#+END_SRC
@@ -4303,7 +4301,7 @@ auto table_array_munge(O,T)(
col_num_ = idx_c;
_table_substantive ~= col ~ mng.tc_s;
if (idx_r == 0 && comp_obj_block.table_heading) {
- } else if (idx_r == 1 && col.match(rgx.numeric_col)) {
+ } else if (col.match(rgx.numeric_col) && idx_r == 1) { // conditions reversed to avoid: gdc compiled program run segfault
if ((comp_obj_block.table_column_aligns.length > idx_c)
&& (comp_obj_block.table_column_aligns[idx_c].matchFirst(rgx.table_col_align_match))) {
comp_obj_block.table_column_aligns[idx_c]