• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision2cdccc96d730501ce4e509e7efe4f8fd3f2b2e29 (tree)
Time2007-11-08 18:35:50
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-150

Change Summary

Incremental Difference

diff -r 40aa7ae37901 -r 2cdccc96d730 src/ops.c
--- a/src/ops.c Tue Nov 06 21:27:31 2007 +0000
+++ b/src/ops.c Thu Nov 08 09:35:50 2007 +0000
@@ -933,9 +933,10 @@
933933 #ifdef FEAT_CLIPBOARD
934934 /* When Visual area changed, may have to update selection. Obtain the
935935 * selection too. */
936- if (name == '*' && clip_star.available && clip_isautosel())
936+ if (name == '*' && clip_star.available)
937937 {
938- clip_update_selection();
938+ if (clip_isautosel())
939+ clip_update_selection();
939940 may_get_selection(name);
940941 }
941942 #endif
diff -r 40aa7ae37901 -r 2cdccc96d730 src/version.c
--- a/src/version.c Tue Nov 06 21:27:31 2007 +0000
+++ b/src/version.c Thu Nov 08 09:35:50 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 150,
671+/**/
670672 149,
671673 /**/
672674 148,
Show on old repository browser