Skip to content

Commit 5d200ba

Browse files
committed
Merge branch 'vim'
Conflicts: src/auto/configure
2 parents 864d43f + 4fa0083 commit 5d200ba

File tree

201 files changed

+1667
-1064
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+1667
-1064
lines changed

.hgtags

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,3 +2700,26 @@ da95a7f1d5a8413ae719188cec5b706b99db4a91 v7-4a-045
27002700
f0361e297d9ceb533a17530647b4482c3990df3c v7-4a-046
27012701
8c6615a30951fb9f2d2b218e55626f5dfa3fa24e v7-4a-047
27022702
09c88160095d98a0b1403e9230c76e8adbb75d59 v7-4b-000
2703+
47a09a572ea670d0498983eaa6ded5ab4f12fd15 v7-4b-001
2704+
2e63b6c763f7af2ef11f751d3047847652dddfe0 v7-4b-002
2705+
ea876fe914833a69018c54d6927dbbdb42ce6ecc v7-4b-003
2706+
3c6e2b89875f39c8417021aa369695ec1ba762df v7-4b-004
2707+
e63e4b4be9236c2d811b5ec7bdd79e387ec8bac9 v7-4b-005
2708+
6b7ab6a4f31a54bceb4e7d6f0f9404b5a37bdad3 v7-4b-006
2709+
b882d4b14e00af23444fd630aae3ac32214dd097 v7-4b-007
2710+
3059c799fcd997ea60a63ed10a2a09d73e3ed3cf v7-4b-008
2711+
cd971e951b0626c253059d8e25859032560920a6 v7-4b-009
2712+
585b623a1aa3baea87a1584e6064612b2183d312 v7-4b-010
2713+
7d1f89b2710305a00e6adac35a1fa6edd47982ba v7-4b-011
2714+
25f67b62afd8c58b6c661961cc762f00ee89e562 v7-4b-012
2715+
1ed6fd19c36051da73f9987777002b331853f5ea v7-4b-013
2716+
3ddec3d25bd178d4f90114bce9ce889f3889e6d2 v7-4b-014
2717+
d96f16667cc48d89c380fae29d86286b20040d5b v7-4b-015
2718+
ba37e955913e85700677b89a720c6e5fc8d23cc3 v7-4b-016
2719+
8c42772f05438e9f06200bca731cf301097be8ea v7-4b-017
2720+
7ed1ec814dafe8109a2f34302174267d31bbc924 v7-4b-018
2721+
74a211a0d3a3135dd67329cd981f5100f5e4d064 v7-4b-019
2722+
46cf49cc9289920704999a971f397eee1efdb3fc v7-4b-020
2723+
059c8a4b103f6971276435127c7ad970a81b0b2c v7-4b-021
2724+
d5d6b78cff090e87d52924179e44131b5ba7436d v7-4b-022
2725+
359743c1f59af353454dd80a26d9f8c20ae6ee8e v7-4

Contents

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Vim Vi IMproved. A clone of the UNIX text editor Vi. Very useful
99
messages, shows current file name in window title, on-line
1010
help, rectangular cut/paste, etc., etc., etc...
1111

12-
Version 7.4b. Also runs under UNIX, MSDOS and other systems.
13-
vim74brt.tgz contains the documentation and syntax files.
14-
vim74bbin.tgz contains the binaries.
15-
vim74bsrc.tgz contains the sources.
12+
Version 7.4. Also runs under UNIX, MSDOS and other systems.
13+
vim74rt.tgz contains the documentation and syntax files.
14+
vim74bin.tgz contains the binaries.
15+
vim74src.tgz contains the sources.
1616
Author: Bram Moolenaar et al.
1717

1818

Makefile

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ all install uninstall tools config configure reconfig proto depend lint tags typ
7474
# Before creating an archive first delete all backup files, *.orig, etc.
7575

7676
MAJOR = 7
77-
MINOR = 4b
77+
MINOR = 4
7878

7979
# Uncomment this line if the Win32s version is to be included.
8080
# DOSBIN_S = dosbin_s
@@ -92,8 +92,6 @@ MINOR = 4b
9292
# runtime/doc/*.txt and nsis/gvim.nsi. Other things in README_os2.txt. For a
9393
# minor/major version: src/GvimExt/GvimExt.reg, src/vim.def, src/vim16.def,
9494
# src/gvim.exe.mnf.
95-
# - Adjust the date and other info in src/version.h.
96-
# - Correct included_patches[] in src/version.c.
9795
# - Compile Vim with GTK, Perl, Python, Python3, TCL, Ruby, MZscheme, Lua (if
9896
# you can make it all work), Cscope and "huge" features. Exclude workshop
9997
# and SNiFF.
@@ -102,17 +100,23 @@ MINOR = 4b
102100
# - With these features: "make depend" (works best with gcc).
103101
# - If you have a lint program: "make lint" and check the output (ignore GTK
104102
# warnings).
105-
# - Enable the efence library in "src/Makefile" and run "make test". Disable
106-
# Python and Ruby to avoid trouble with threads (efence is not threadsafe).
103+
# - If you have valgrind, enable it in src/testdir/Makefile and run "make
104+
# test". Enable EXITFREE, disable GUI, scheme and tcl to avoid false alarms.
105+
# Check the valgrind output.
106+
# - If you have the efence library, enable it in "src/Makefile" and run "make
107+
# test". Disable Python and Ruby to avoid trouble with threads (efence is
108+
# not threadsafe).
109+
# - Adjust the date and other info in src/version.h.
110+
# - Correct included_patches[] in src/version.c.
107111
# - Check for missing entries in runtime/makemenu.vim (with checkmenu script).
108112
# - Check for missing options in runtime/optwin.vim et al. (with check.vim).
109113
# - Do "make menu" to update the runtime/synmenu.vim file.
110114
# - Add remarks for changes to runtime/doc/version7.txt.
111115
# - Check that runtime/doc/help.txt doesn't contain entries in "LOCAL
112116
# ADDITIONS".
113117
# - In runtime/doc run "make" and "make html" to check for errors.
114-
# - Check if src/Makefile and src/feature.h don't contain any personal
115-
# preferences or the GTK, Perl, etc. mentioned above.
118+
# - Check if src/Makefile, src/testdir/Makefile and src/feature.h don't contain
119+
# any personal preferences or the changes mentioned above.
116120
# - Check file protections to be "644" for text and "755" for executables (run
117121
# the "check" script).
118122
# - Check compiling on Amiga, MS-DOS and MS-Windows.

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README.txt for version 7.4b of Vim: Vi IMproved.
1+
README.txt for version 7.4 of Vim: Vi IMproved.
22

33

44
WHAT IS VIM

README_ami.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_ami.txt for version 7.4b of Vim: Vi IMproved.
1+
README_ami.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on Amiga systems.
44
See README.txt for general information about Vim.

README_amibin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_amibin.txt for version 7.4b of Vim: Vi IMproved.
1+
README_amibin.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_ami.txt" for installation instructions for the Amiga.

README_amisrc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_amisrc.txt for version 7.4b of Vim: Vi IMproved.
1+
README_amisrc.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_ami.txt" for installation instructions for the Amiga.

README_bindos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_bindos.txt for version 7.4b of Vim: Vi IMproved.
1+
README_bindos.txt for version 7.4 of Vim: Vi IMproved.
22

33
See "README.txt" for general information about Vim.
44
See "README_dos.txt" for installation instructions for MS-DOS and MS-Windows.

README_dos.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_dos.txt for version 7.4b of Vim: Vi IMproved.
1+
README_dos.txt for version 7.4 of Vim: Vi IMproved.
22

33
This file explains the installation of Vim on MS-DOS and MS-Windows systems.
44
See "README.txt" for general information about Vim.

README_extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
README_extra.txt for version 7.4b of Vim: Vi IMproved.
1+
README_extra.txt for version 7.4 of Vim: Vi IMproved.
22

33
These extra files of Vim are for special purposes. This README explains what
44
the files are for. For general information about Vim, see the "README.txt"

0 commit comments

Comments
 (0)