summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-09-13 20:05:18 +0000
committerBram Moolenaar <Bram@vim.org>2007-09-13 20:05:18 +0000
commit5c2e0f27c5fb2832326f2285b6e61d8e72705164 (patch)
tree1ca03d4c7d71800cd5364ba745bf6e312ad942eb
parent037cc64f8f46d5f2e4441e14850ea91efa2b9c63 (diff)
updated for version 7.1-106v7.1.106
-rw-r--r--src/message.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index 82b9c9aeaa..6aa6746fc4 100644
--- a/src/message.c
+++ b/src/message.c
@@ -828,7 +828,7 @@ ex_messages(eap)
_("Messages maintainer: Bram Moolenaar <Bram@vim.org>"),
hl_attr(HLF_T));
- for (p = first_msg_hist; p != NULL; p = p->next)
+ for (p = first_msg_hist; p != NULL && !got_int; p = p->next)
if (p->msg != NULL)
msg_attr(p->msg, p->attr);
diff --git a/src/version.c b/src/version.c
index 90bc0490dd..b319fcc0b8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 106,
+/**/
105,
/**/
104,