From bafcf13695f80dac6d9be87b65ad6156ddc3d621 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Fri, 5 Dec 2025 12:41:31 -0700 Subject: delete functions which were exposed as unused --- vis.h | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'vis.h') diff --git a/vis.h b/vis.h index 7237e04..0b1c331 100644 --- a/vis.h +++ b/vis.h @@ -147,23 +147,6 @@ VIS_EXPORT void vis_die(Vis *vis, const char *msg, ...) __attribute__((noreturn, * @endrst */ VIS_EXPORT bool vis_signal_handler(Vis *vis, int signum, const siginfo_t *siginfo, const void *context); -/** - * Interrupt long running operation. - * @param vis The editor instance. - * @rst - * .. warning:: There is no guarantee that a long running operation is actually - * interrupted. It is analogous to cooperative multitasking where - * the operation has to voluntarily yield control. - * .. note:: It is invoked from `vis_signal_handler` when receiving ``SIGINT``. - * @endrst - */ -VIS_EXPORT void vis_interrupt(Vis*); -/** - * Check whether interruption was requested. - * @param vis The editor instance. - */ -VIS_EXPORT bool vis_interrupt_requested(Vis*); -/** @} */ /* --- @@ -328,13 +311,6 @@ VIS_EXPORT void vis_message_show(Vis *vis, const char *msg); * @param len The length of the data to insert. */ VIS_EXPORT void vis_insert(Vis *vis, size_t pos, const char *data, size_t len); -/** - * Delete data from the file. - * @param vis The editor instance. - * @param pos The starting position of the deletion. - * @param len The length of the data to delete. - */ -VIS_EXPORT void vis_delete(Vis *vis, size_t pos, size_t len); /** * Replace data in the file. * @param vis The editor instance. -- cgit v1.2.3