This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository terminology.
View the commit online.
commit e4a2bbb0f532ed9ffee733a621ae9ff15c445462
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Aug 21 16:26:08 2023 +0200
termptyesc: use wrapper, usefull for testing
---
src/bin/termptyesc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c
index 86cc318..def66b6 100644
--- a/src/bin/termptyesc.c
+++ b/src/bin/termptyesc.c
@@ -4408,14 +4408,14 @@ _handle_osc_selection(Termpty *ty, Eina_Unicode *p, int len)
{
sel_type = _elm_sel_type_from_osc52(*p);
cb.sel = sel_type;
- elm_cnp_selection_get(ty->obj, cb.sel, ELM_SEL_FORMAT_TEXT,
+ termio_selection_buffer_get_cb(ty->obj, cb.sel, ELM_SEL_FORMAT_TEXT,
_osc52_report_cb, &cb);
c++;
}
if (!cb.has_data)
{
cb.sel = ELM_SEL_TYPE_PRIMARY;
- elm_cnp_selection_get(ty->obj, cb.sel, ELM_SEL_FORMAT_TEXT,
+ termio_selection_buffer_get_cb(ty->obj, cb.sel, ELM_SEL_FORMAT_TEXT,
_osc52_report_cb, &cb);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.