]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1136 v7.3.1136
authorBram Moolenaar <Bram@vim.org>
Thu, 6 Jun 2013 19:31:06 +0000 (21:31 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 6 Jun 2013 19:31:06 +0000 (21:31 +0200)
Problem:    ":func Foo" does not show attributes.
Solution:   Add "abort", "dict" and "range". (Yasuhiro Matsumoto)

src/eval.c
src/version.c

index 83233c9daade8b4eafa04177c5e03265b5c1311e..d0d154dc56cde4bc7bc173a4df84d38d4fed9fc7 100644 (file)
@@ -21891,6 +21891,12 @@ list_func_head(fp, indent)
        MSG_PUTS("...");
     }
     msg_putchar(')');
+    if (fp->uf_flags & FC_ABORT)
+       MSG_PUTS(" abort");
+    if (fp->uf_flags & FC_RANGE)
+       MSG_PUTS(" range");
+    if (fp->uf_flags & FC_DICT)
+       MSG_PUTS(" dict");
     msg_clr_eos();
     if (p_verbose > 0)
        last_set_msg(fp->uf_script_ID);
index dd532e5dca127b23fe32b90d919f5d68e1efccfe..76bdd6cf8a676a71fe47d94722b981ccb8045636 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1136,
 /**/
     1135,
 /**/