|
Karsten Hopp |
c70e56 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
c70e56 |
Subject: Patch 7.3.1273
|
|
Karsten Hopp |
c70e56 |
Fcc: outbox
|
|
Karsten Hopp |
c70e56 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
c70e56 |
Mime-Version: 1.0
|
|
Karsten Hopp |
c70e56 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
c70e56 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
c70e56 |
------------
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
Patch 7.3.1273
|
|
Karsten Hopp |
c70e56 |
Problem: When copying a location list the index might be wrong.
|
|
Karsten Hopp |
c70e56 |
Solution: Set the index to one when using the first entry. (Lech Lorens)
|
|
Karsten Hopp |
c70e56 |
Files: src/quickfix.c
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
*** ../vim-7.3.1272/src/quickfix.c 2013-06-08 18:19:40.000000000 +0200
|
|
Karsten Hopp |
c70e56 |
--- src/quickfix.c 2013-06-30 13:28:38.000000000 +0200
|
|
Karsten Hopp |
c70e56 |
***************
|
|
Karsten Hopp |
c70e56 |
*** 1180,1186 ****
|
|
Karsten Hopp |
c70e56 |
--- 1180,1189 ----
|
|
Karsten Hopp |
c70e56 |
/* When no valid entries are present in the list, qf_ptr points to
|
|
Karsten Hopp |
c70e56 |
* the first item in the list */
|
|
Karsten Hopp |
c70e56 |
if (to_qfl->qf_nonevalid)
|
|
Karsten Hopp |
c70e56 |
+ {
|
|
Karsten Hopp |
c70e56 |
to_qfl->qf_ptr = to_qfl->qf_start;
|
|
Karsten Hopp |
c70e56 |
+ to_qfl->qf_index = 1;
|
|
Karsten Hopp |
c70e56 |
+ }
|
|
Karsten Hopp |
c70e56 |
}
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
to->w_llist->qf_curlist = qi->qf_curlist; /* current list */
|
|
Karsten Hopp |
c70e56 |
*** ../vim-7.3.1272/src/version.c 2013-06-30 13:17:18.000000000 +0200
|
|
Karsten Hopp |
c70e56 |
--- src/version.c 2013-06-30 13:30:29.000000000 +0200
|
|
Karsten Hopp |
c70e56 |
***************
|
|
Karsten Hopp |
c70e56 |
*** 730,731 ****
|
|
Karsten Hopp |
c70e56 |
--- 730,733 ----
|
|
Karsten Hopp |
c70e56 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
c70e56 |
+ /**/
|
|
Karsten Hopp |
c70e56 |
+ 1273,
|
|
Karsten Hopp |
c70e56 |
/**/
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
--
|
|
Karsten Hopp |
c70e56 |
WOMAN: King of the who?
|
|
Karsten Hopp |
c70e56 |
ARTHUR: The Britons.
|
|
Karsten Hopp |
c70e56 |
WOMAN: Who are the Britons?
|
|
Karsten Hopp |
c70e56 |
ARTHUR: Well, we all are. we're all Britons and I am your king.
|
|
Karsten Hopp |
c70e56 |
The Quest for the Holy Grail (Monty Python)
|
|
Karsten Hopp |
c70e56 |
|
|
Karsten Hopp |
c70e56 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
c70e56 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
c70e56 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
c70e56 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|