Skip to content

Commit 7980b06

Browse files
committed
This revision patches one line in InteractionsModel that was
not properly update in the previous revision. The following files were modified: modified: src/edu/rice/cs/drjava/model/repl/InteractionsModel.java
1 parent 1ef994b commit 7980b06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drjava/src/edu/rice/cs/drjava/model/repl/InteractionsModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ public void changeInputListener(InputListener oldListener, InputListener newList
592592
public void _interactionIsOver() {
593593
Utilities.invokeLater(new Runnable() {
594594
public void run() {
595-
_log.log("Adding to history '" + toEval + "'");
595+
_log.log("Adding to history '" + _toAddToHistory + "'");
596596
_document.addToHistory(_toAddToHistory); // better place for this action despite bug report #952
597597
_document.setInProgress(false);
598598
_document.insertPrompt();

0 commit comments

Comments
 (0)