diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 05:50:25 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-24 05:58:27 +0100 |
commit | e030c4e574de9350024fba415450a0017fe48b56 (patch) | |
tree | d2eb0d69b69ad84b173c496b9c28792fdf80e381 /src/cmdline.cpp | |
parent | 70776212a69ce374b16baa108a21accd0921589d (diff) | |
download | sciteco-e030c4e574de9350024fba415450a0017fe48b56.tar.gz |
turn off Scintilla undo collection by default and fixed memleak
* in batch mode, Scintilla undo actions are simply leaked memory
* Since we have more than one Scintilla view now, we must empty
the undo buffer of all scintilla views when a command line is committed ($$)
Diffstat (limited to 'src/cmdline.cpp')
-rw-r--r-- | src/cmdline.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmdline.cpp b/src/cmdline.cpp index 8b2d412..78c0bdb 100644 --- a/src/cmdline.cpp +++ b/src/cmdline.cpp @@ -258,7 +258,9 @@ process_edit_cmd(gchar key) throw Quit(); undo.clear(); - interface.ssm(SCI_EMPTYUNDOBUFFER); + /* also empties all Scintilla undo buffers */ + ring.set_scintilla_undo(true); + QRegisters::view.set_scintilla_undo(true); Goto::table->clear(); expressions.clear(); |