|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.439
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.439
|
|
|
3ef2ca |
Problem: Duplicate message in message history. Some quickfix messages
|
|
|
3ef2ca |
appear twice. (Gary Johnson)
|
|
|
3ef2ca |
Solution: Do not reset keep_msg too early. (Hirohito Higashi)
|
|
|
3ef2ca |
Files: src/main.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.438/src/main.c 2014-09-09 12:25:27.764501863 +0200
|
|
|
3ef2ca |
--- src/main.c 2014-09-09 17:37:56.612542817 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1249,1257 ****
|
|
|
3ef2ca |
char_u *p;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/* msg_attr_keep() will set keep_msg to NULL, must free the
|
|
|
3ef2ca |
! * string here. */
|
|
|
3ef2ca |
p = keep_msg;
|
|
|
3ef2ca |
- keep_msg = NULL;
|
|
|
3ef2ca |
msg_attr(p, keep_msg_attr);
|
|
|
3ef2ca |
vim_free(p);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
--- 1249,1257 ----
|
|
|
3ef2ca |
char_u *p;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/* msg_attr_keep() will set keep_msg to NULL, must free the
|
|
|
3ef2ca |
! * string here. Don't reset keep_msg, msg_attr_keep() uses it
|
|
|
3ef2ca |
! * to check for duplicates. */
|
|
|
3ef2ca |
p = keep_msg;
|
|
|
3ef2ca |
msg_attr(p, keep_msg_attr);
|
|
|
3ef2ca |
vim_free(p);
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
*** ../vim-7.4.438/src/version.c 2014-09-09 17:33:02.704542175 +0200
|
|
|
3ef2ca |
--- src/version.c 2014-09-09 17:41:11.984543243 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 743,744 ****
|
|
|
3ef2ca |
--- 743,746 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 439,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
Corduroy pillows: They're making headlines!
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|