Skip to content

Commit ac9c6d5

Browse files
RestorerZchrisbra
authored andcommitted
patch 9.0.1994: inconsistent feature description
Problem: inconsistent feature description Solution: delete old mentioned feature sets small and big The may however still be mentioned for historical reasons. e.g. The last Amiga built version is for Vim6.2 and is still a big version. closes: #13273 Signed-off-by: Christian Brabandt <[email protected]> Co-authored-by: RestorerZ <[email protected]>
1 parent 9960ebc commit ac9c6d5

File tree

9 files changed

+10
-12
lines changed

9 files changed

+10
-12
lines changed

.appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ environment:
2929
# disabled
3030
# - FEATURE: TINY
3131
# - FEATURE: NORMAL
32-
# - FEATURE: BIG
3332

3433
matrix:
3534
fast_finish: true

READMEdir/README_os390.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Change to the vim directory and do:
4646

4747
$ export CC=cc
4848
$ export _CC_CCMODE=1
49-
$./configure --with-features=big --without-x --enable-gui=no
49+
$./configure --with-features=normal --without-x --enable-gui=no
5050
$ cd src
5151
$ make
5252

runtime/doc/starting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1704,6 +1704,6 @@ most of the information will be restored).
17041704
If you get the |press-enter| prompt you can press "q"
17051705
and still get the prompt to enter a file number.
17061706
Use ! to abandon a modified buffer. |abandon|
1707-
{not when compiled with tiny or small features}
1707+
{not when compiled with tiny features}
17081708

17091709
vim:tw=78:ts=8:noet:ft=help:norl:

runtime/doc/testing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Vim can be tested after building it, usually with "make test".
2121
The tests are located in the directory "src/testdir".
2222

2323
There are two types of tests added over time:
24-
test20.in oldest, only for tiny and small builds
24+
test20.in oldest, only for tiny builds
2525
test_something.vim new style tests
2626

2727
*new-style-testing*

runtime/doc/usr_90.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,8 @@ enabled from the Makefile.
173173

174174
--prefix={directory} Top directory where to install Vim.
175175

176-
--with-features=tiny Compile with many features disabled.
177-
--with-features=small Compile with some features disabled.
178-
--with-features=big Compile with more features enabled.
176+
--with-features=tiny Compile with some features disabled.
177+
--with-features=normal Compile with more features enabled.
179178
--with-features=huge Compile with most features enabled.
180179
See |+feature-list| for which feature
181180
is enabled in which case.

runtime/doc/various.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,15 +320,13 @@ g8 Print the hex values of the bytes used in the
320320
The first column shows the smallest version in which
321321
they are included:
322322
T tiny (always)
323-
S small
324323
N normal
325-
B big
326324
H huge
327325
m manually enabled or depends on other features
328326
- never, feature was removed
329327
(none) system dependent
330328
Thus if a feature is marked with "N", it is included
331-
in the normal, big and huge versions of Vim.
329+
in the normal and huge versions of Vim.
332330

333331
*+feature-list*
334332
*+acl* |ACL| support included

src/bigvim.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:: command to build big Vim with OLE, Lua, Perl, Python, Racket, Ruby and Tcl
1+
:: command to build huge Vim with OLE, Lua, Perl, Python, Racket, Ruby and Tcl
22
SET VCDIR="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\"
33
SET TOOLDIR=E:\
44
%VCDIR%nmake -f Make_mvc.mak GUI=yes OLE=yes LUA=%TOOLDIR%lua53 DYNAMIC_LUA=yes LUA_VER=53 PERL=%TOOLDIR%perl524 DYNAMIC_PERL=yes PERL_VER=524 PYTHON=%TOOLDIR%python27 DYNAMIC_PYTHON=yes PYTHON_VER=27 PYTHON3=%TOOLDIR%python36 DYNAMIC_PYTHON3=yes PYTHON3_VER=36 MZSCHEME=%TOOLDIR%Racket DYNAMIC_MZSCHEME=yes MZSCHEME_VER=3m_a36fs8 RUBY=%TOOLDIR%ruby24 DYNAMIC_RUBY=yes RUBY_VER=24 RUBY_API_VER_LONG=2.4.0 RUBY_MSVCRT_NAME=msvcrt TCL=%TOOLDIR%ActiveTcl TCL_VER=86 TCL_VER_LONG=8.6 DYNAMIC_TCL=yes TCL_DLL=tcl86t.dll %1 IME=yes CSCOPE=yes DIRECTX=yes

src/bigvim64.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:: command to build big Vim 64 bit with OLE, Perl and Python.
1+
:: command to build huge Vim 64 bit with OLE, Perl and Python.
22
:: First run: %VCDIR%\vcvarsall.bat x86_amd64
33
:: Ruby and Tcl are excluded, doesn't seem to work.
44
SET VCDIR="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\"

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -704,6 +704,8 @@ static char *(features[]) =
704704

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
1994,
707709
/**/
708710
1993,
709711
/**/

0 commit comments

Comments
 (0)