diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-12-30 20:55:09 -0500 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-17 16:59:38 -0400 | 
| commit | ac868b590106763c2b3223a1af5cf9f49cce6ca5 (patch) | |
| tree | 6865d4ce6e8441a5c9922097828ad9ddf1658c01 /src/doc_reform/doc_reform.d | |
| parent | 0.3.3 org mode behavior (diff) | |
cosmeticdoc-reform_v0.3.3
Diffstat (limited to 'src/doc_reform/doc_reform.d')
| -rwxr-xr-x | src/doc_reform/doc_reform.d | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/src/doc_reform/doc_reform.d b/src/doc_reform/doc_reform.d index 081c95c..f1d8d18 100755 --- a/src/doc_reform/doc_reform.d +++ b/src/doc_reform/doc_reform.d @@ -26,6 +26,7 @@ import std.algorithm;  import std.parallelism;  mixin(import("version.txt"));  mixin CompileTimeInfo; +string program_name = "doc-reform";  /++  name        "doc_reform"  description "A SiSU inspired document parser writen in D." @@ -44,8 +45,9 @@ void main(string[] args) {    scope(success) {      debug(checkdoc) {        writefln( -        "~ run complete, ok ~ (doc_reform-%s.%s.%s, %s D:%s, %s %s)", -        ver.major, ver.minor, ver.patch, +        "~ run complete, ok ~ (%s-%s.%s.%s, %s D:%s, %s %s)", +        program_name, +        _ver.major, _ver.minor, _ver.patch,          __VENDOR__, __VERSION__,          bits, os,        ); @@ -395,8 +397,8 @@ void main(string[] args) {    }    auto _opt_action = OptActions();    auto _env = [ -    "pwd" : environment["PWD"], -    "home" : environment["HOME"], +    "pwd" :     environment["PWD"], +    "home" :    environment["HOME"],    ];    auto _manifest_start = PodManifest!()("");    auto _manifest_matter = PathMatters!()(_opt_action, _env, "");  | 
