Skip to content

Commit 8e1524d

Browse files
committed
Merge pull request #1374 from Dyalog/aplan_output
Fix output issue when using APLAN_FOR_OUTPUT=1
1 parent 85c5015 commit 8e1524d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/se.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ D.Se.prototype = {
285285
v.text = se.preProcessOutput('', v.text);
286286
se.lines.push(v);
287287
} else {
288-
if (v.type === 14 || se.promptType === 4) ll.text = '';
288+
if ((ll.type !== 2 && v.type === 14) || se.promptType === 4) ll.text = '';
289289
ll.text = se.preProcessOutput(ll.text, v.text);
290290
ll.type = v.type;
291291
ll.group = v.group;

0 commit comments

Comments
 (0)