]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.482 v7.4.482
authorBram Moolenaar <Bram@vim.org>
Tue, 21 Oct 2014 12:15:17 +0000 (14:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 21 Oct 2014 12:15:17 +0000 (14:15 +0200)
Problem:    When 'balloonexpr' results in a list, the text has a trailing
            newline. (Lcd)
Solution:   Remove one trailing newline.

src/gui_beval.c
src/version.c

index ae78456607c6f393eb0eb2bb733be58917f728f3..b3e51fb843832212566fe23533fce176baf5bb0b 100644 (file)
@@ -30,6 +30,7 @@ general_beval_cb(beval, state)
     long       winnr = 0;
     char_u     *bexpr;
     buf_T      *save_curbuf;
+    size_t     len;
 # ifdef FEAT_WINDOWS
     win_T      *cw;
 # endif
@@ -83,6 +84,16 @@ general_beval_cb(beval, state)
            vim_free(result);
            result = eval_to_string(bexpr, NULL, TRUE);
 
+           /* Remove one trailing newline, it is added when the result was a
+            * list and it's hardly every useful.  If the user really wants a
+            * trailing newline he can add two and one remains. */
+           if (result != NULL)
+           {
+               len = STRLEN(result);
+               if (len > 0 && result[len - 1] == NL)
+                   result[len - 1] = NUL;
+           }
+
            if (use_sandbox)
                --sandbox;
            --textlock;
index 7923a4d9366b71ae4b72f2bedf6c57a5db9a3b51..7540f8ddc470482c8afba8f64354af454f9f7c44 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    482,
 /**/
     481,
 /**/