view src/proto/if_python.pro @ 32870:c18185d165cc v9.0.1744

patch 9.0.1744: Dead code in open_cmdwin() Commit: https://github.com/vim/vim/commit/c3172fe9e4d3ea7f705b5fc02fdb0c4ceb3df8b9 Author: Sean Dewar <seandewar@users.noreply.github.com> Date: Sat Aug 19 13:23:50 2023 +0200 patch 9.0.1744: Dead code in open_cmdwin() Problem: Dead code in open_cmdwin() Solution: Remove it closes: #12839 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
author Christian Brabandt <cb@256bit.org>
date Sat, 19 Aug 2023 13:30:07 +0200
parents 21b0a39d13ed
children
line wrap: on
line source

/* if_python.c */
int python_enabled(int verbose);
void python_end(void);
int python_loaded(void);
void ex_python(exarg_T *eap);
void ex_pyfile(exarg_T *eap);
void ex_pydo(exarg_T *eap);
void python_buffer_free(buf_T *buf);
void python_window_free(win_T *win);
void python_tabpage_free(tabpage_T *tab);
void do_pyeval(char_u *str, typval_T *rettv);
int set_ref_in_python(int copyID);
/* vim: set ft=c : */