Home
last modified time | relevance | path

Searched refs:MLE_RETURN_ERR (Results 1 – 6 of 6) sorted by relevance

/dports/editors/mle/mle-1.4.3/
H A Dcmd.c612 MLE_RETURN_ERR(ctx->editor, "Failed to format grep cmd: %s", grep_fmt); in cmd_grep()
630 MLE_RETURN_ERR(ctx->editor, "%s", "Failed to select word under cursor"); in cmd_ctag()
639 MLE_RETURN_ERR(ctx->editor, "%s", "Failed to format readtags cmd"); in cmd_ctag()
747 if (ctx->editor->macro_apply) MLE_RETURN_ERR(ctx->editor, "Cannot nest macros%s", ""); in cmd_apply_macro_by()
752 if (!macro) MLE_RETURN_ERR(ctx->editor, "Macro not found with name '%s'", name); in cmd_apply_macro_by()
763 if (ctx->editor->macro_apply) MLE_RETURN_ERR(ctx->editor, "Cannot nest macros%s", ""); in cmd_apply_macro()
768 if (!macro) MLE_RETURN_ERR(ctx->editor, "Macro not found%s", ""); in cmd_apply_macro()
1262 MLE_RETURN_ERR(editor, "Cannot close non-edit bview %p", (void*)bview); in _cmd_pre_close()
1264 MLE_RETURN_ERR(editor, "Cannot close bview %p when loop_depth > 1", (void*)bview); in _cmd_pre_close()
H A Deditor.c370 MLE_RETURN_ERR(editor, "No bview %p in editor->all_bviews", (void*)bview); in editor_set_active()
372 MLE_RETURN_ERR(editor, "Cannot abandon prompt for bview %p", (void*)bview); in editor_set_active()
581 MLE_RETURN_ERR(editor, "No bview %p in editor->all_bviews", (void*)bview); in _editor_close_bview_inner()
1968 MLE_RETURN_ERR(editor, "Failed to popen rc file %s", rc_path); in _editor_init_from_rc_exec()
H A Dcursor.c117 MLE_RETURN_ERR(cursor->bview->editor, "Unrecognized cursor_select_by strat '%s'", strat); in cursor_select_by()
H A Dutil.c50 MLE_RETURN_ERR(editor, "Failed to exec shell cmd: %s", cmd); in util_shell_exec()
H A Dbview.c228 MLE_RETURN_ERR(self->editor, "bview %p is already split", (void*)self); in bview_split()
230 MLE_RETURN_ERR(self->editor, "bview %p is not an edit bview", (void*)self); in bview_split()
H A Dmle.h615 #define MLE_RETURN_ERR(editor, fmt, ...) do { \ macro