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:
@@ -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);
|
||||||
|
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user