Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
ee79cbc7
Commit
ee79cbc7
authored
17 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0-240
parent
eeefcc77
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
src/window.c
+25
-1
25 additions, 1 deletion
src/window.c
with
27 additions
and
1 deletion
src/version.c
+
2
−
0
View file @
ee79cbc7
...
...
@@ -666,6 +666,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
240
,
/**/
239
,
/**/
...
...
This diff is collapsed.
Click to expand it.
src/window.c
+
25
−
1
View file @
ee79cbc7
...
...
@@ -722,6 +722,12 @@ win_split_ins(size, flags, newwin, dir)
need_status
=
STATUS_HEIGHT
;
}
#ifdef FEAT_GUI
/* May be needed for the scrollbars that are going to change. */
if
(
gui
.
in_use
)
out_flush
();
#endif
#ifdef FEAT_VERTSPLIT
if
(
flags
&
WSP_VERT
)
{
...
...
@@ -4071,6 +4077,12 @@ win_alloc(after)
if
(
newwin
!=
NULL
)
{
#ifdef FEAT_AUTOCMD
/* Don't execute autocommands while the window is not properly
* initialized yet. gui_create_scrollbar() may trigger a FocusGained
* event. */
++
autocmd_block
;
#endif
/*
* link the window in the window list
*/
...
...
@@ -4100,7 +4112,6 @@ win_alloc(after)
#ifdef FEAT_GUI
if
(
gui
.
in_use
)
{
out_flush
();
gui_create_scrollbar
(
&
newwin
->
w_scrollbars
[
SBAR_LEFT
],
SBAR_LEFT
,
newwin
);
gui_create_scrollbar
(
&
newwin
->
w_scrollbars
[
SBAR_RIGHT
],
...
...
@@ -4113,6 +4124,9 @@ win_alloc(after)
#endif
#ifdef FEAT_FOLDING
foldInitWin
(
newwin
);
#endif
#ifdef FEAT_AUTOCMD
--
autocmd_block
;
#endif
}
return
newwin
;
...
...
@@ -4130,6 +4144,12 @@ win_free(wp, tp)
{
int
i
;
#ifdef FEAT_AUTOCMD
/* Don't execute autocommands while the window is halfway being deleted.
* gui_mch_destroy_scrollbar() may trigger a FocusGained event. */
++
autocmd_block
;
#endif
#ifdef FEAT_MZSCHEME
mzscheme_window_free
(
wp
);
#endif
...
...
@@ -4188,6 +4208,10 @@ win_free(wp, tp)
win_remove
(
wp
,
tp
);
vim_free
(
wp
);
#ifdef FEAT_AUTOCMD
--
autocmd_block
;
#endif
}
/*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment