annotate src/proto/termlib.pro @ 6312:31c78e590806
v7.4.489
updated for version 7.4.489
Problem: Cursor movement still wrong when 'lbr' is set and there is a
number column. (Hirohito Higashi)
Solution: Add correction for number column. (Hiroyuki Takagi)
author |
Bram Moolenaar <bram@vim.org> |
date |
Fri, 31 Oct 2014 12:42:01 +0100 |
parents |
96cd8222a819 |
children |
21b0a39d13ed |
rev |
line source |
7
|
1 /* termlib.c */
|
1125
|
2 int tgetent __ARGS((char *tbuf, char *term));
|
|
3 int tgetflag __ARGS((char *id));
|
|
4 int tgetnum __ARGS((char *id));
|
|
5 char *tgetstr __ARGS((char *id, char **buf));
|
|
6 char *tgoto __ARGS((char *cm, int col, int line));
|
|
7 int tputs __ARGS((char *cp, int affcnt, void (*outc)(unsigned int)));
|
7
|
8 /* vim: set ft=c : */
|