aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-08-10 21:16:15 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2008-08-10 21:16:15 -0400
commit70bcc8f406d96ce948d39ea1fc1ff2cfdc7cc723 (patch)
treea3c258e39e5d3878b3f6cffd995544f35f21ce6a /src
parenteb0abec9ee98dd8904a5ead4b541d6ead3160db6 (diff)
downloadtextadept-70bcc8f406d96ce948d39ea1fc1ff2cfdc7cc723.tar.gz
textadept-70bcc8f406d96ce948d39ea1fc1ff2cfdc7cc723.zip
Made set_default_*_properties handlers for their respective *_new events.
Diffstat (limited to 'src')
-rw-r--r--src/textadept.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/textadept.c b/src/textadept.c
index 61f32f96..6fc3b2a3 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -192,7 +192,6 @@ GtkWidget* new_scintilla_window(sptr_t buffer_id) {
new_scintilla_buffer(SCINTILLA(editor), false, false);
} else new_scintilla_buffer(SCINTILLA(editor), false, true);
l_set_view_global(editor);
- l_handle_event("set_default_editor_properties");
l_handle_event("view_new");
return editor;
}
@@ -238,7 +237,6 @@ void new_scintilla_buffer(ScintillaObject *sci, bool create, bool addref) {
SS(sci, SCI_ADDREFDOCUMENT, 0, doc);
}
l_set_buffer_global(sci);
- l_handle_event("set_default_buffer_properties");
l_handle_event("buffer_new");
}