summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-11-08 09:35:50 +0000
committerBram Moolenaar <Bram@vim.org>2007-11-08 09:35:50 +0000
commitcdfd3e424a0634fe3133b94c2e75737f371c08fc (patch)
tree4216892f95059f964f0e995e4e993a13c8008cd5
parent9b25ffbb2b2210d8a27316ba38ff100713504285 (diff)
updated for version 7.1-150v7.1.150
-rw-r--r--src/ops.c5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ops.c b/src/ops.c
index 8f0031401e..ea5e20bd62 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -933,9 +933,10 @@ get_register(name, copy)
#ifdef FEAT_CLIPBOARD
/* When Visual area changed, may have to update selection. Obtain the
* selection too. */
- if (name == '*' && clip_star.available && clip_isautosel())
+ if (name == '*' && clip_star.available)
{
- clip_update_selection();
+ if (clip_isautosel())
+ clip_update_selection();
may_get_selection(name);
}
#endif
diff --git a/src/version.c b/src/version.c
index 1857c91790..d365e8591e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 150,
+/**/
149,
/**/
148,