0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

updated for version 7.3.1136

Problem:    ":func Foo" does not show attributes.
Solution:   Add "abort", "dict" and "range". (Yasuhiro Matsumoto)
This commit is contained in:
Bram Moolenaar
2013-06-06 21:31:06 +02:00
parent 4e31296ffa
commit 4cd92d5aae
2 changed files with 8 additions and 0 deletions

View File

@@ -21891,6 +21891,12 @@ list_func_head(fp, indent)
MSG_PUTS("..."); MSG_PUTS("...");
} }
msg_putchar(')'); 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(); msg_clr_eos();
if (p_verbose > 0) if (p_verbose > 0)
last_set_msg(fp->uf_script_ID); last_set_msg(fp->uf_script_ID);

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1136,
/**/ /**/
1135, 1135,
/**/ /**/