Justin M. Keyes
609dad3799
Revert "Enable link-time optimisations on Release build."
...
This reverts commit 1132b67b5b
.
See https://github.com/neovim/neovim/pull/4313#discussion_r53570725
2016-02-22 00:37:16 -05:00
Justin M. Keyes
d9291954b9
Merge pull request #4259 from watiko/vim-7.4.881
...
vim-patch:7.4.{879,881}
2016-02-22 00:34:24 -05:00
Justin M. Keyes
6395dd64a4
Merge pull request #4167 from lucc/test11
...
tests: migrate legacy test 11
2016-02-21 23:49:36 -05:00
Justin M. Keyes
dd4b661dbd
Merge pull request #4243 from lucc/test36
...
tests: Migrate legacy test 36.
2016-02-21 23:47:15 -05:00
Justin M. Keyes
d4778104b5
Merge pull request #4079 from fwalch/vim-patch/review-improvements
...
vim-patch.sh: Improvements for review functionality, submission option.
2016-02-21 15:33:21 -05:00
Justin M. Keyes
44166a150c
Merge pull request #4314 from justinmk/mksession_terminal
...
mksession: Restore buftype=terminal windows.
2016-02-21 15:22:05 -05:00
Justin M. Keyes
81b68b0af3
Merge pull request #4247 from watiko/vim-7.4.903
...
vim-patch:7.4.{831,832,845,903}
2016-02-21 15:21:53 -05:00
Justin M. Keyes
4bd848f24f
mksession: Restore buftype=terminal windows.
...
Closes #4311
2016-02-21 14:42:31 -05:00
Justin M. Keyes
09e4c244ee
Merge pull request #4313 from Yamakaky/flto
...
Enable link-time optimisations on Release build.
2016-02-21 13:14:57 -05:00
Yamakaky
1132b67b5b
Enable link-time optimisations on Release build.
...
Fixes https://github.com/neovim/neovim/issues/3136
2016-02-21 18:33:28 +01:00
watiko
693bf1dafb
path.c: Fulfill the @returns
conditions
...
Original-author: oni-link <knil.ino@gmail.com>
2016-02-21 22:07:42 +09:00
watiko
d6c894efaf
vim-patch:7.4.903
...
Problem: MS-Windows: When 'encoding' differs from the current code page,
expandinig wildcards may cause illegal memory access.
Solution: Allocate a longer buffer. (Ken Takata)
7314efd87d
2016-02-21 22:06:39 +09:00
watiko
6bbd149e98
vim-patch:7.4.845
...
Problem: Compiler warning for possible loss of data.
Solution: Add a type cast. (Erich Ritz)
5df1ed2de3
2016-02-21 22:06:39 +09:00
watiko
6ea1047585
vim-patch:7.4.832
...
Problem: $HOME in `=$HOME . '/.vimrc'` is expanded too early.
Solution: Skip over `=expr` when expanding environment names.
be83b73ddb
---
To reproduce:
```sh
nvim -u NONE -c 'e `=$HOME . "/.vimrc"`'
```
2016-02-21 22:06:39 +09:00
watiko
c8561ecf26
vim-patch:7.4.831
...
Problem: When expanding `=expr` on the command line and encountering an
error, the command is executed anyway.
Solution: Bail out when an error is detected.
3f188935ec
2016-02-21 22:06:23 +09:00
Justin M. Keyes
fc51f86b72
Merge pull request #4296 from mhinz/fix-termclose
...
Make TermClose event return the associated buffer
2016-02-21 02:04:13 -05:00
Marco Hinz
6732f0193a
Tests: check <abuf> from TermClose
2016-02-21 02:39:01 +01:00
Marco Hinz
fe8b2fabe7
Make TermClose event return the associated buffer
...
<abuf> from the TermClose event now returns the correct buffer number.
Prior to this change it would always return the buffer number of the current
buffer, which is obviously wrong in an async environment.
2016-02-21 02:38:55 +01:00
Justin M. Keyes
51055c14a6
Merge pull request #4306 from justinmk/termau
...
terminal_open: do not force autocmds
2016-02-20 16:02:50 -05:00
Justin M. Keyes
44024f2c65
Merge #4249 'tests: migrate charsearch'
2016-02-20 10:52:18 -05:00
Lucas Hoffmann
1b8caf3d75
test: charsearch: Fix error/typo in legacy test.
...
Error was reported upstream in vim/vim#650 , fixed in 7.4.1366.
Typo was fixed upstream in 7.4.1041.
2016-02-20 10:52:02 -05:00
Lucas Hoffmann
4a02dc0828
tests: Remove old charset test after migration.
2016-02-20 07:57:55 +01:00
Lucas Hoffmann
76c9bd00d0
tests: Migrate legacy charsearch test.
2016-02-20 07:53:37 +01:00
Felipe Morales
3e3db580fd
Merge pull request #4298 from tomxtobin/fix-help-typo
...
doc: Remove stray "<" in options help
2016-02-19 23:16:17 +01:00
Felipe Morales
af67f022ca
Merge pull request #4264 from watiko/vim-7.4.922
...
vim-patch:7.4.922
2016-02-19 22:07:46 +01:00
Tom X. Tobin
e87c7fcb39
Remove stray "<" in options help
...
Normally this would end an example, but there's no example block here.
2016-02-19 14:13:17 -05:00
Justin M. Keyes
00347ec781
Merge pull request #4240 from jbradaric/vim-7.4.888
...
vim-patch:7.4.888
2016-02-19 04:06:29 -05:00
Justin M. Keyes
87a49405b0
terminal_open: do not force autocmds
2016-02-19 03:03:11 -05:00
Justin M. Keyes
12938b82fb
Merge pull request #4294 from justinmk/coverity
...
coverity
2016-02-19 02:38:42 -05:00
Justin M. Keyes
156df2c81b
coverity/135593: Error handling issues (CHECKED_RETURN)
...
Harmless issue (HI): retval is intentionally ignored, as is the wont of
didset_options() and friends.
2016-02-19 02:00:23 -05:00
Justin M. Keyes
06e53aa487
coverity/135589: (FP) Null pointer dereferences
...
False positive: buflist_findnr() should not be NULL in this case because
it is given a buffer number that (should be) guaranteed to exist.
2016-02-19 02:00:22 -05:00
Justin M. Keyes
91254bd9d8
Merge pull request #4280 from mhinz/add-issue-template
...
Add ISSUE_TEMPLATE.md
2016-02-18 18:33:16 -05:00
Marco Hinz
a6a6f70128
Add ISSUE_TEMPLATE.md
...
This is a new Github feature:
https://github.com/blog/2111-issue-and-pull-request-templates
2016-02-19 00:28:36 +01:00
Justin M. Keyes
f887037a8f
Merge pull request #4276 from justinmk/coverity135578
...
coverity/135578: Memory - illegal accesses
2016-02-17 10:45:24 -05:00
Justin M. Keyes
498eb02049
Merge pull request #4239 from jbradaric/vim-7.4.885
...
vim-patch:7.4.885
2016-02-17 04:31:21 -05:00
Jurica Bradaric
bd7de9dac9
vim-patch:7.4.859 #4238
...
Problem: Vim doesn't recognize all htmldjango files.
Solution: Recognize a comment. (Daniel Hahler, PR #410 )
d8986fd914
2016-02-17 04:28:01 -05:00
Justin M. Keyes
e4e5815242
Merge pull request #4244 from watiko/vim-7.4.830
...
vim-patch:7.4.{830,833}
2016-02-17 04:26:29 -05:00
Justin M. Keyes
b2b3768bb4
Merge pull request #4234 from watiko/vim-7.4.977
...
vim-patch:7.4.{818,883,977}
2016-02-17 04:10:50 -05:00
Justin M. Keyes
af1745a763
Merge pull request #4230 from jbradaric/vim-7.4.853
...
vim-patch:7.4.{853,856}
2016-02-17 04:08:57 -05:00
Justin M. Keyes
9198b06ea6
Merge pull request #4229 from jbradaric/vim-7.4.847
...
vim-patch:7.4.847
2016-02-17 04:04:27 -05:00
Jurica Bradaric
560a346d57
vim-patch:7.4.844 #4228
...
Problem: When '#' is in 'isident' the is# comparator doesn't work.
Solution: Don't use vim_isIDc(). (Yasuhiro Matsumoto)
37a8de17d4
2016-02-17 03:59:58 -05:00
Justin M. Keyes
5f54519b4f
Merge pull request #4213 from jbradaric/vim-7.4.835
...
vim-patch:7.4.{835,843,877}
2016-02-17 03:49:57 -05:00
Justin M. Keyes
6dc39d84cf
Merge pull request #4188 from jbradaric/vim-7.4.868
...
vim-patch:7.4.868
2016-02-17 03:45:12 -05:00
Florian Walch
e65fce8ed3
vim-patch.sh: Replace #<number> with vim/vim#<number> in commit messages.
2016-02-17 00:18:19 +01:00
Florian Walch
cc6299ecbc
vim-patch.sh: Support multi-patch pull requests.
...
* Calling "vim-patch.sh -p" on a checked-out branch already created with
"-p" will re-use the branch and append commits.
* Fetch upstream/master before checking out branch on first call of "-p".
* Reverted creation of commit in submit step ("-s") to previous behavior:
Create an empty commit with correct commit message when "-p" is called.
* Submitting a pull request with "-s" will create a correct pull request
message even if multiple patches have been ported in one single branch
with "-p".
2016-02-17 00:18:19 +01:00
Florian Walch
775a16b0b7
vim-patch.sh: Add -s (submit pull request) option.
...
When calling "vim-patch.sh -s" on a checked-out branch created with
"vim-patch.sh -p", create commit from staged changes, push to origin,
create pull request (using hub), and clean up patch files.
2016-02-17 00:18:19 +01:00
Florian Walch
07eabc062e
vim-patch.sh: Use .patch files only.
2016-02-17 00:18:19 +01:00
Florian Walch
b768d8a09c
vim-patch.sh: Improvements for review functionality.
...
* Support pull requests with multiple commits.
* Offer to clean up files after review.
* Always use full commit hash in assign_commit_details().
2016-02-17 00:18:19 +01:00
Justin M. Keyes
9648bf795a
coverity/135578: Memory - illegal accesses
...
Harmless issue, but doesn't hurt to satisfy coverity here.
2016-02-16 04:25:59 -05:00
Björn Linse
5af9ae9e60
Merge pull request #4171 from cacplate/pr-3694
...
diff.c: change return type to bool (adoption of #3694 )
2016-02-15 23:07:31 +01:00