Mercurial > vim
annotate src/proto/session.pro @ 24039:a5478836fcb7 v8.2.2561
patch 8.2.2561: not all textprop code is covered by tests
Commit: https://github.com/vim/vim/commit/3dc3474f00e529b014add48f7f3d1dad2ec15498
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 2 13:36:47 2021 +0100
patch 8.2.2561: not all textprop code is covered by tests
Problem: Not all textprop code is covered by tests.
Solution: Add a few more test cases. (Dominique Pell?, closes https://github.com/vim/vim/issues/7908)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 02 Mar 2021 13:45:05 +0100 |
parents | e00d12c085a5 |
children |
rev | line source |
---|---|
17536
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* session.c */ |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 void ex_loadview(exarg_T *eap); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 int write_session_file(char_u *filename); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 void ex_mkrc(exarg_T *eap); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 var_flavour_T var_flavour(char_u *varname); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 int put_eol(FILE *fd); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 int put_line(FILE *fd, char *s); |
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 /* vim: set ft=c : */ |