diff options
| author | jmoenig <jens@moenig.org> | 2014-11-20 15:16:12 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2014-11-20 15:16:12 +0100 |
| commit | ce93fe8da73738e67683fa9cbfe7741de62f5336 (patch) | |
| tree | bdc2f5acc8ae377786ae557cd0c1501bbbd9e9b2 | |
| parent | 4768102b098281d4f2462d4c4b0fe8b5cf228ef6 (diff) | |
| download | snap-byow-ce93fe8da73738e67683fa9cbfe7741de62f5336.tar.gz snap-byow-ce93fe8da73738e67683fa9cbfe7741de62f5336.zip | |
fix ‘line’ option in ‘split’ block for Windows files
thanks, @brianharvey!
| -rwxr-xr-x | history.txt | 1 | ||||
| -rw-r--r-- | threads.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/history.txt b/history.txt index b022790..c44a57b 100755 --- a/history.txt +++ b/history.txt @@ -2330,3 +2330,4 @@ ______ * GUI: Set Default Save location to Cloud on load, thanks, @cycomachead! * GUI: Updated the “About” Dialog with a mention of support from CDG (SAP Labs) * BYOB: Percent sign fix for block labels, thanks, @natashasandy! +* Threads: fix ‘line’ option in ‘split’ block for Windows files, thanks, @brianharvey! @@ -2126,7 +2126,7 @@ Process.prototype.reportTextSplit = function (string, delimiter) { str = (string || '').toString(); switch (this.inputOption(delimiter)) { case 'line': - del = '\n'; + del = '\r?\n'; break; case 'tab': del = '\t'; |
