|
Karsten Hopp |
177cce |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
177cce |
Subject: Patch 7.3.1271
|
|
Karsten Hopp |
177cce |
Fcc: outbox
|
|
Karsten Hopp |
177cce |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
177cce |
Mime-Version: 1.0
|
|
Karsten Hopp |
177cce |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
177cce |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
177cce |
------------
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
Patch 7.3.1271 (after 7.3.1260)
|
|
Karsten Hopp |
177cce |
Problem: Command line completion does not work.
|
|
Karsten Hopp |
177cce |
Solution: Move setting xp_line down. (Daniel Thau)
|
|
Karsten Hopp |
177cce |
Files: src/ex_getln.c
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
*** ../vim-7.3.1270/src/ex_getln.c 2013-06-29 12:58:27.000000000 +0200
|
|
Karsten Hopp |
177cce |
--- src/ex_getln.c 2013-06-30 12:15:19.000000000 +0200
|
|
Karsten Hopp |
177cce |
***************
|
|
Karsten Hopp |
177cce |
*** 4379,4389 ****
|
|
Karsten Hopp |
177cce |
int old_char = NUL;
|
|
Karsten Hopp |
177cce |
char_u *nextcomm;
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
- /* Store the string here so that call_user_expand_func() can get to them
|
|
Karsten Hopp |
177cce |
- * easily. */
|
|
Karsten Hopp |
177cce |
- xp->xp_line = str;
|
|
Karsten Hopp |
177cce |
- xp->xp_col = col;
|
|
Karsten Hopp |
177cce |
-
|
|
Karsten Hopp |
177cce |
/*
|
|
Karsten Hopp |
177cce |
* Avoid a UMR warning from Purify, only save the character if it has been
|
|
Karsten Hopp |
177cce |
* written before.
|
|
Karsten Hopp |
177cce |
--- 4379,4384 ----
|
|
Karsten Hopp |
177cce |
***************
|
|
Karsten Hopp |
177cce |
*** 4414,4419 ****
|
|
Karsten Hopp |
177cce |
--- 4409,4419 ----
|
|
Karsten Hopp |
177cce |
while (nextcomm != NULL)
|
|
Karsten Hopp |
177cce |
nextcomm = set_one_cmd_context(xp, nextcomm);
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
+ /* Store the string here so that call_user_expand_func() can get to them
|
|
Karsten Hopp |
177cce |
+ * easily. */
|
|
Karsten Hopp |
177cce |
+ xp->xp_line = str;
|
|
Karsten Hopp |
177cce |
+ xp->xp_col = col;
|
|
Karsten Hopp |
177cce |
+
|
|
Karsten Hopp |
177cce |
str[col] = old_char;
|
|
Karsten Hopp |
177cce |
}
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
*** ../vim-7.3.1270/src/version.c 2013-06-29 17:19:20.000000000 +0200
|
|
Karsten Hopp |
177cce |
--- src/version.c 2013-06-30 12:21:13.000000000 +0200
|
|
Karsten Hopp |
177cce |
***************
|
|
Karsten Hopp |
177cce |
*** 730,731 ****
|
|
Karsten Hopp |
177cce |
--- 730,733 ----
|
|
Karsten Hopp |
177cce |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
177cce |
+ /**/
|
|
Karsten Hopp |
177cce |
+ 1271,
|
|
Karsten Hopp |
177cce |
/**/
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
--
|
|
Karsten Hopp |
177cce |
Q: Is selling software the same as selling hardware?
|
|
Karsten Hopp |
177cce |
A: No, good hardware is sold new, good software has already been used by many.
|
|
Karsten Hopp |
177cce |
|
|
Karsten Hopp |
177cce |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
177cce |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
177cce |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
177cce |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|