Mercurial > vim
view src/proto/if_python.pro @ 32553:e80fa10e0549 v9.0.1608
patch 9.0.1608: update_topline() is called twice
Commit: https://github.com/vim/vim/commit/5c606846b9a43c7e6b94c7e96838f7532792f557
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Mon Jun 5 15:00:05 2023 +0100
patch 9.0.1608: update_topline() is called twice
Problem: update_topline() is called twice.
Solution: Do not call update_topline() before curs_columns(). (Luuk van
Baal, closes #12495)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 05 Jun 2023 16:15:04 +0200 |
parents | 21b0a39d13ed |
children | a0b0c1e07064 |
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 : */