updated for version 7.3.074
Problem: Can't use the "+ register like "* for yank and put.
Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
diff --git a/src/globals.h b/src/globals.h
index 82731f9..84aaa06 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -512,7 +512,11 @@
# define clip_plus clip_star /* there is only one clipboard */
# define ONE_CLIPBOARD
# endif
-EXTERN int clip_unnamed INIT(= FALSE);
+
+#define CLIP_UNNAMED 1
+#define CLIP_UNNAMED_PLUS 2
+EXTERN int clip_unnamed INIT(= 0); /* above two values or'ed */
+
EXTERN int clip_autoselect INIT(= FALSE);
EXTERN int clip_autoselectml INIT(= FALSE);
EXTERN int clip_html INIT(= FALSE);