diff options
Diffstat (limited to 'src/sdp/ao/read_source_files.d')
-rw-r--r-- | src/sdp/ao/read_source_files.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sdp/ao/read_source_files.d b/src/sdp/ao/read_source_files.d index 3b348f3..db20cfd 100644 --- a/src/sdp/ao/read_source_files.d +++ b/src/sdp/ao/read_source_files.d @@ -115,14 +115,14 @@ template SiSUrawMarkupContent() { return t; } final char[][] getInsertMarkupSourceContentRawLineArray( - in char[] fn_src, + in char[] fn_src_insert, Regex!(char) rgx_file ) { enforce( - fn_src.match(rgx_file), + fn_src_insert.match(rgx_file), "not a sisu markup filename" ); - auto source_txt_str = readInMarkupSource(fn_src); + auto source_txt_str = readInMarkupSource(fn_src_insert); auto source_line_arr = markupSourceLineArray(source_txt_str); return source_line_arr; } |