]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.145 v7.4.145
authorBram Moolenaar <Bram@vim.org>
Tue, 14 Jan 2014 11:33:36 +0000 (12:33 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 14 Jan 2014 11:33:36 +0000 (12:33 +0100)
Problem:    getregtype() does not return zero for unknown register.
Solution:   Adjust documention: return empty string for unknown register.
            Check the register name to be valid. (Yukihiro Nakadaira)

runtime/doc/eval.txt
src/ops.c
src/version.c

index be0e667b7c70a6fdb6f7cbdc067c567b2571f4bd..f8f3b99bccb8c335e146c9d834101b0fd5a60a66 100644 (file)
@@ -3460,7 +3460,7 @@ getregtype([{regname}])                                   *getregtype()*
                    "v"                 for |characterwise| text
                    "V"                 for |linewise| text
                    "<CTRL-V>{width}"   for |blockwise-visual| text
-                                     for an empty or unknown register
+                   ""                  for an empty or unknown register
                <CTRL-V> is one character with value 0x16.
                If {regname} is not specified, |v:register| is used.
 
index d2060a47e83890a8c007ae3ccc7bbfa3b709203b..66b9b594969d9925f4834e8dc125fc069589d5f0 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -6240,7 +6240,9 @@ get_reg_type(regname, reglen)
     regname = may_get_selection(regname);
 #endif
 
-    /* Should we check for a valid name? */
+    if (regname != NUL && !valid_yank_reg(regname, FALSE))
+        return MAUTO;
+
     get_yank_register(regname, FALSE);
 
     if (y_current->y_array != NULL)
index 8ecdef609e7b2837a65eb38ee8e68a032e2fc1b5..ed8a10adba8c7112327f4c6292427b7f358cf905 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    145,
 /**/
     144,
 /**/