comparison runtime/doc/develop.txt @ 13818:28ac7914b2b6

Update runtime files and translations commit https://github.com/vim/vim/commit/15142e27aaafa15b72d1042c25fbb5e4f12b6736 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 30 22:19:58 2018 +0200 Update runtime files and translations
author Christian Brabandt <cb@256bit.org>
date Mon, 30 Apr 2018 22:30:08 +0200
parents a62eeee5f116
children e751b5c9dff3
comparison
equal deleted inserted replaced
13817:49f764b1d6cc 13818:28ac7914b2b6
1 *develop.txt* For Vim version 8.0. Last change: 2018 Apr 18 1 *develop.txt* For Vim version 8.0. Last change: 2018 Apr 23
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
180 6. Make a note about what changed, preferably mentioning the problem and the 180 6. Make a note about what changed, preferably mentioning the problem and the
181 solution. Send an email to the |vim-dev| maillist with an explanation and 181 solution. Send an email to the |vim-dev| maillist with an explanation and
182 include the diff. Or create a pull request on github. 182 include the diff. Or create a pull request on github.
183 183
184 184
185 C COMPILER *style-compiler* 185 C COMPILER *style-compiler* *ANSI-C* *C89* *C99*
186 186
187 The minimal C compiler version supported is C89, also known as ANSI C. 187 The minimal C compiler version supported is C89, also known as ANSI C.
188 Later standards, such as C99, are not widely supported, or at least not 100% 188 Later standards, such as C99, are not widely supported, or at least not 100%
189 supported. Therefore we use only some of the C99 features and disallow some 189 supported. Therefore we use only some of the C99 features and disallow some
190 (at least for now). 190 (at least for now).