# HG changeset patch # User vimboss # Date 1194514550 0 # Node ID 2cdccc96d730501ce4e509e7efe4f8fd3f2b2e29 # Parent 40aa7ae37901ce256da18bcc84dc5ee21f83829a updated for version 7.1-150 diff --git a/src/ops.c b/src/ops.c --- 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 --- 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,