()
| 865 | } |
| 866 | function undo() {unredoHelper(history.done, history.undone);} |
| 867 | function redo() {unredoHelper(history.undone, history.done);} |
| 868 | |
| 869 | function updateLinesNoUndo(from, to, newText, selFrom, selTo) { |
| 870 | if (suppressEdits) return; |
nothing calls this directly
no test coverage detected