summaryrefslogtreecommitdiff
path: root/ted.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-02 18:24:37 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-02 18:24:37 -0500
commit68066ad410368b0e5d66d7fa983bea882eba1eb6 (patch)
tree4124e596cee112aa076f93ab8915732463522a00 /ted.c
parent00b639118e32c7e65a402ddf70a57d0238b5abe1 (diff)
command selector working!
Diffstat (limited to 'ted.c')
-rw-r--r--ted.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ted.c b/ted.c
index 8b6c657..325755f 100644
--- a/ted.c
+++ b/ted.c
@@ -101,7 +101,7 @@ static void ted_load_fonts(Ted *ted) {
// sets the active buffer to this buffer, and updates active_node, etc. accordingly
// you can pass NULL to buffer to make it so no buffer is active.
-static void ted_switch_to_buffer(Ted *ted, TextBuffer *buffer) {
+void ted_switch_to_buffer(Ted *ted, TextBuffer *buffer) {
ted->active_buffer = buffer;
if (ted->find) find_update(ted, true);