|
Karsten Hopp |
81da07 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
81da07 |
Subject: Patch 7.3.574
|
|
Karsten Hopp |
81da07 |
Fcc: outbox
|
|
Karsten Hopp |
81da07 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
81da07 |
Mime-Version: 1.0
|
|
Karsten Hopp |
81da07 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
81da07 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
81da07 |
------------
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
Patch 7.3.574
|
|
Karsten Hopp |
81da07 |
Problem: When pasting a register in the search command line a CTRL-L
|
|
Karsten Hopp |
81da07 |
character is not pasted. (Dominique Pelle)
|
|
Karsten Hopp |
81da07 |
Solution: Escape the CTRL-L. (Christian Brabandt)
|
|
Karsten Hopp |
81da07 |
Files: src/ex_getln.c
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
*** ../vim-7.3.573/src/ex_getln.c 2012-06-06 12:02:57.000000000 +0200
|
|
Karsten Hopp |
81da07 |
--- src/ex_getln.c 2012-06-29 13:39:03.000000000 +0200
|
|
Karsten Hopp |
81da07 |
***************
|
|
Karsten Hopp |
81da07 |
*** 3133,3139 ****
|
|
Karsten Hopp |
81da07 |
else
|
|
Karsten Hopp |
81da07 |
#endif
|
|
Karsten Hopp |
81da07 |
c = *s++;
|
|
Karsten Hopp |
81da07 |
! if (cv == Ctrl_V || c == ESC || c == Ctrl_C || c == CAR || c == NL
|
|
Karsten Hopp |
81da07 |
#ifdef UNIX
|
|
Karsten Hopp |
81da07 |
|| c == intr_char
|
|
Karsten Hopp |
81da07 |
#endif
|
|
Karsten Hopp |
81da07 |
--- 3133,3140 ----
|
|
Karsten Hopp |
81da07 |
else
|
|
Karsten Hopp |
81da07 |
#endif
|
|
Karsten Hopp |
81da07 |
c = *s++;
|
|
Karsten Hopp |
81da07 |
! if (cv == Ctrl_V || c == ESC || c == Ctrl_C
|
|
Karsten Hopp |
81da07 |
! || c == CAR || c == NL || c == Ctrl_L
|
|
Karsten Hopp |
81da07 |
#ifdef UNIX
|
|
Karsten Hopp |
81da07 |
|| c == intr_char
|
|
Karsten Hopp |
81da07 |
#endif
|
|
Karsten Hopp |
81da07 |
***************
|
|
Karsten Hopp |
81da07 |
*** 4692,4698 ****
|
|
Karsten Hopp |
81da07 |
if (tab[i].ic)
|
|
Karsten Hopp |
81da07 |
regmatch.rm_ic = TRUE;
|
|
Karsten Hopp |
81da07 |
ret = ExpandGeneric(xp, ®match, num_file, file,
|
|
Karsten Hopp |
81da07 |
! tab[i].func, tab[i].escaped);
|
|
Karsten Hopp |
81da07 |
break;
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
--- 4693,4699 ----
|
|
Karsten Hopp |
81da07 |
if (tab[i].ic)
|
|
Karsten Hopp |
81da07 |
regmatch.rm_ic = TRUE;
|
|
Karsten Hopp |
81da07 |
ret = ExpandGeneric(xp, ®match, num_file, file,
|
|
Karsten Hopp |
81da07 |
! tab[i].func, tab[i].escaped);
|
|
Karsten Hopp |
81da07 |
break;
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
***************
|
|
Karsten Hopp |
81da07 |
*** 5125,5131 ****
|
|
Karsten Hopp |
81da07 |
vim_free(matches);
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
if (ga.ga_len == 0)
|
|
Karsten Hopp |
81da07 |
! return FAIL;
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
/* Sort and remove duplicates which can happen when specifying multiple
|
|
Karsten Hopp |
81da07 |
* directories in dirnames. */
|
|
Karsten Hopp |
81da07 |
--- 5126,5132 ----
|
|
Karsten Hopp |
81da07 |
vim_free(matches);
|
|
Karsten Hopp |
81da07 |
}
|
|
Karsten Hopp |
81da07 |
if (ga.ga_len == 0)
|
|
Karsten Hopp |
81da07 |
! return FAIL;
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
/* Sort and remove duplicates which can happen when specifying multiple
|
|
Karsten Hopp |
81da07 |
* directories in dirnames. */
|
|
Karsten Hopp |
81da07 |
*** ../vim-7.3.573/src/version.c 2012-06-29 13:34:15.000000000 +0200
|
|
Karsten Hopp |
81da07 |
--- src/version.c 2012-06-29 13:38:22.000000000 +0200
|
|
Karsten Hopp |
81da07 |
***************
|
|
Karsten Hopp |
81da07 |
*** 716,717 ****
|
|
Karsten Hopp |
81da07 |
--- 716,719 ----
|
|
Karsten Hopp |
81da07 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
81da07 |
+ /**/
|
|
Karsten Hopp |
81da07 |
+ 574,
|
|
Karsten Hopp |
81da07 |
/**/
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
--
|
|
Karsten Hopp |
81da07 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
81da07 |
73. You give your dog used motherboards instead of bones
|
|
Karsten Hopp |
81da07 |
|
|
Karsten Hopp |
81da07 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
81da07 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
81da07 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
81da07 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|