From 4cd92d5aae72098baed6e630f548c92dbe54c448 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 6 Jun 2013 21:31:06 +0200 Subject: [PATCH] updated for version 7.3.1136 Problem: ":func Foo" does not show attributes. Solution: Add "abort", "dict" and "range". (Yasuhiro Matsumoto) --- src/eval.c | 6 ++++++ src/version.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/eval.c b/src/eval.c index 83233c9da..d0d154dc5 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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); diff --git a/src/version.c b/src/version.c index dd532e5dc..76bdd6cf8 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1136, /**/ 1135, /**/ -- 2.50.1