comparison src/proto/change.pro @ 16631:7217a9c5adb3

Add missing files from patch 8.1.1318 commit https://github.com/vim/vim/commit/3f86ca0faa29cb862f876a97f87790f3a46a3858 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 11 18:30:00 2019 +0200 Add missing files from patch 8.1.1318
author Bram Moolenaar <Bram@vim.org>
date Sat, 11 May 2019 18:45:06 +0200
parents
children 0daf9eca3541
comparison
equal deleted inserted replaced
16630:0d3d8c26a40f 16631:7217a9c5adb3
1 /* change.c */
2 void change_warning(int col);
3 void changed(void);
4 void changed_internal(void);
5 void changed_bytes(linenr_T lnum, colnr_T col);
6 void inserted_bytes(linenr_T lnum, colnr_T col, int added);
7 void appended_lines(linenr_T lnum, long count);
8 void appended_lines_mark(linenr_T lnum, long count);
9 void deleted_lines(linenr_T lnum, long count);
10 void deleted_lines_mark(linenr_T lnum, long count);
11 void changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra);
12 void unchanged(buf_T *buf, int ff);
13 void ins_bytes(char_u *p);
14 void ins_bytes_len(char_u *p, int len);
15 void ins_char(int c);
16 void ins_char_bytes(char_u *buf, int charlen);
17 void ins_str(char_u *s);
18 int del_char(int fixpos);
19 int del_chars(long count, int fixpos);
20 int del_bytes(long count, int fixpos_arg, int use_delcombine);
21 int open_line(int dir, int flags, int second_line_indent);
22 int truncate_line(int fixpos);
23 void del_lines(long nlines, int undo);
24 /* vim: set ft=c : */