Mercurial > vim
view src/proto/gui_beval.pro @ 24132:512f48dc7100 v8.2.2607
patch 8.2.2607: strcharpart() cannot include composing characters
Commit: https://github.com/vim/vim/commit/02b4d9b18a03549b68e364e428392b7a62766c74
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 14 19:46:45 2021 +0100
patch 8.2.2607: strcharpart() cannot include composing characters
Problem: strcharpart() cannot include composing characters.
Solution: Add the {skipcc} argument.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 14 Mar 2021 20:00:02 +0100 |
parents | 1a450ce6980c |
children |
line wrap: on
line source
/* gui_beval.c */ BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); void gui_mch_destroy_beval_area(BalloonEval *beval); void gui_mch_enable_beval_area(BalloonEval *beval); void gui_mch_disable_beval_area(BalloonEval *beval); BalloonEval *gui_mch_currently_showing_beval(void); void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); void gui_mch_unpost_balloon(BalloonEval *beval); /* vim: set ft=c : */