Mercurial > vim
annotate src/proto/gui_beval.pro @ 19085:fd1070ff696b v8.2.0103
patch 8.2.0103: using null object with execute() has strange effects
Commit: https://github.com/vim/vim/commit/e2a8f0773e91685843c062b1e48259712d5f2213
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jan 8 19:32:18 2020 +0100
patch 8.2.0103: using null object with execute() has strange effects
Problem: Using null object with execute() has strange effects.
Solution: Give an error message ofr Job and Channel.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 08 Jan 2020 19:45:04 +0100 |
parents | 1a450ce6980c |
children |
rev | line source |
---|---|
7 | 1 /* gui_beval.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
2 BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
3 void gui_mch_destroy_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
4 void gui_mch_enable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
5 void gui_mch_disable_beval_area(BalloonEval *beval); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
6 BalloonEval *gui_mch_currently_showing_beval(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
7 void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
8 void gui_mch_unpost_balloon(BalloonEval *beval); |
7 | 9 /* vim: set ft=c : */ |