Lines Matching refs:tbuf
3677 char tbuf[FGETS_SIZE]; in vim_fgets() local
3688 tbuf[FGETS_SIZE - 2] = NUL; in vim_fgets()
3689 vim_ignoredp = fgets((char *)tbuf, FGETS_SIZE, fp); in vim_fgets()
3690 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n'); in vim_fgets()
3988 buf_T *tbuf = curbuf; in move_lines() local
4021 curbuf = tbuf; in move_lines()
4041 char *tbuf; in buf_check_timestamp() local
4228 tbuf = alloc(STRLEN(path) + STRLEN(mesg) + STRLEN(mesg2) + 2); in buf_check_timestamp()
4229 sprintf(tbuf, mesg, path); in buf_check_timestamp()
4233 set_vim_var_string(VV_WARNINGMSG, (char_u *)tbuf, -1); in buf_check_timestamp()
4240 STRCAT(tbuf, "\n"); in buf_check_timestamp()
4241 STRCAT(tbuf, mesg2); in buf_check_timestamp()
4244 (char_u *)tbuf, in buf_check_timestamp()
4254 STRCAT(tbuf, "; "); in buf_check_timestamp()
4255 STRCAT(tbuf, mesg2); in buf_check_timestamp()
4257 emsg(tbuf); in buf_check_timestamp()
4265 msg_puts_attr(tbuf, HL_ATTR(HLF_E) + MSG_HIST); in buf_check_timestamp()
4287 vim_free(tbuf); in buf_check_timestamp()