# HG changeset patch # User Bram Moolenaar # Date 1305041373 -7200 # Node ID 71e1da07e1414740d1d0eed47a346cb3292a9e2e # Parent 561cab6fc70102bc5a80b835fcd3b8b732935e47 updated for version 7.3.189 Problem: Can't build without +clipboard feature. (Christian Ebert) Solution: Add the missing #ifdef. diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -1204,9 +1204,12 @@ getcount: #ifdef FEAT_EVAL { int regname = 0; + /* Adjust the register according to 'clipboard', so that when * "unnamed" is present it becomes '*' or '+' instead of '"'. */ +# ifdef FEAT_CLIPBOARD adjust_clip_reg(®name); +# endif set_reg_var(regname); } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 189, +/**/ 188, /**/ 187,