Mercurial > vim
annotate src/proto/termlib.pro @ 8481:8924d7adbc22 v7.4.1531
commit https://github.com/vim/vim/commit/40e8cb292c36f5057628e570591e8917ac1ca121
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 10 21:10:58 2016 +0100
patch 7.4.1531
Problem: Compiler warning for unitinialized variable. (Dominique Pelle)
Solution: Always give the variable a value.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 10 Mar 2016 21:15:13 +0100 |
parents | 21b0a39d13ed |
children |
rev | line source |
---|---|
7 | 1 /* termlib.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
2 int tgetent(char *tbuf, char *term); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
3 int tgetflag(char *id); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
4 int tgetnum(char *id); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
5 char *tgetstr(char *id, char **buf); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
6 char *tgoto(char *cm, int col, int line); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1125
diff
changeset
|
7 int tputs(char *cp, int affcnt, void (*outc)(unsigned int)); |
7 | 8 /* vim: set ft=c : */ |