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
89af4394
Commit
89af4394
authored
12 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.3.599
Problem: Missing change in one file. Solution: Patch for changed clip_autoselect().
parent
cfa3caec
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/option.c
+13
-5
13 additions, 5 deletions
src/option.c
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
with
15 additions
and
5 deletions
src/option.c
+
13
−
5
View file @
89af4394
...
...
@@ -7377,7 +7377,8 @@ check_stl_option(s)
check_clipboard_option()
{
int new_unnamed = 0;
int new_autoselect = FALSE;
int new_autoselect_star = FALSE;
int new_autoselect_plus = FALSE;
int new_autoselectml = FALSE;
int new_html = FALSE;
regprog_T *new_exclude_prog = NULL;
...
...
@@ -7398,13 +7399,19 @@ check_clipboard_option()
p += 11;
}
else if (STRNCMP(p, "autoselect", 10) == 0
&& (p[10] == ',' || p[10] == NUL))
&& (p[10] == ',' || p[10] == NUL))
{
new_autoselect = TRUE;
new_autoselect
_star
= TRUE;
p += 10;
}
else if (STRNCMP(p, "autoselectplus", 14) == 0
&& (p[14] == ',' || p[14] == NUL))
{
new_autoselect_plus = TRUE;
p += 14;
}
else if (STRNCMP(p, "autoselectml", 12) == 0
&& (p[12] == ',' || p[12] == NUL))
&& (p[12] == ',' || p[12] == NUL))
{
new_autoselectml = TRUE;
p += 12;
...
...
@@ -7433,7 +7440,8 @@ check_clipboard_option()
if (errmsg == NULL)
{
clip_unnamed = new_unnamed;
clip_autoselect = new_autoselect;
clip_autoselect_star = new_autoselect_star;
clip_autoselect_plus = new_autoselect_plus;
clip_autoselectml = new_autoselectml;
clip_html = new_html;
vim_free(clip_exclude_prog);
...
...
This diff is collapsed.
Click to expand it.
src/version.c
+
2
−
0
View file @
89af4394
...
...
@@ -714,6 +714,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
599
,
/**/
598
,
/**/
...
...
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