diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-11-23 18:47:18 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-11-24 12:08:14 -0500 |
commit | 36f686396990c5d21d259f7940b6e85c81934dc7 (patch) | |
tree | 03b63b31aab2a42ffcc9b230fc0cc435afb37f2e | |
parent | 4f569333dbfe842034ed48b1c093e5894655d61e (diff) | |
download | rneovim-36f686396990c5d21d259f7940b6e85c81934dc7.tar.gz rneovim-36f686396990c5d21d259f7940b6e85c81934dc7.tar.bz2 rneovim-36f686396990c5d21d259f7940b6e85c81934dc7.zip |
doc/develop.txt: Remove "design-assumptions" section
We don't make such assumptions; new code should use fixed-width integer
types [1].
[1]: https://neovim.io/develop/style-guide.xml?showone=Integer_Types#Integer_Types
-rw-r--r-- | runtime/doc/develop.txt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index d0dd741888..7e71541e45 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -12,7 +12,6 @@ Vim. 1. Design goals |design-goals| 2. Coding style |coding-style| 3. Design decisions |design-decisions| -4. Assumptions |design-assumptions| See the file README.txt in the "src" directory for an overview of the source code. @@ -479,17 +478,4 @@ This isn't ideal, because the longer Vim is running the higher the counts become. But in practice it is a noticeable improvement over not using the word count. -============================================================================== -4. Assumptions *design-assumptions* - -Size of variables: -char 8 bit signed -char_u 8 bit unsigned -int 32 or 64 bit signed (16 might be possible with limited features) -unsigned 32 or 64 bit unsigned (16 as with ints) -long 32 or 64 bit signed, can hold a pointer - -Note that some compilers cannot handle long lines or strings. The C89 -standard specifies a limit of 509 characters. - vim:tw=78:ts=8:ft=help:norl: |