|
Karsten Hopp |
0054ba |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
0054ba |
Subject: Patch 7.3.1264
|
|
Karsten Hopp |
0054ba |
Fcc: outbox
|
|
Karsten Hopp |
0054ba |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
0054ba |
Mime-Version: 1.0
|
|
Karsten Hopp |
0054ba |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
0054ba |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
0054ba |
------------
|
|
Karsten Hopp |
0054ba |
|
|
Karsten Hopp |
0054ba |
Patch 7.3.1264 (after 7.3.1261)
|
|
Karsten Hopp |
0054ba |
Problem: Missing m_nowait.
|
|
Karsten Hopp |
0054ba |
Solution: Include missing part of the patch.
|
|
Karsten Hopp |
0054ba |
Files: src/structs.h
|
|
Karsten Hopp |
0054ba |
|
|
Karsten Hopp |
0054ba |
|
|
Karsten Hopp |
0054ba |
*** ../vim-7.3.1263/src/structs.h 2013-06-29 12:58:27.000000000 +0200
|
|
Karsten Hopp |
0054ba |
--- src/structs.h 2013-06-29 13:31:55.000000000 +0200
|
|
Karsten Hopp |
0054ba |
***************
|
|
Karsten Hopp |
0054ba |
*** 1004,1015 ****
|
|
Karsten Hopp |
0054ba |
{
|
|
Karsten Hopp |
0054ba |
mapblock_T *m_next; /* next mapblock in list */
|
|
Karsten Hopp |
0054ba |
char_u *m_keys; /* mapped from, lhs */
|
|
Karsten Hopp |
0054ba |
- int m_keylen; /* strlen(m_keys) */
|
|
Karsten Hopp |
0054ba |
char_u *m_str; /* mapped to, rhs */
|
|
Karsten Hopp |
0054ba |
char_u *m_orig_str; /* rhs as entered by the user */
|
|
Karsten Hopp |
0054ba |
int m_mode; /* valid mode */
|
|
Karsten Hopp |
0054ba |
int m_noremap; /* if non-zero no re-mapping for m_str */
|
|
Karsten Hopp |
0054ba |
char m_silent; /* <silent> used, don't echo commands */
|
|
Karsten Hopp |
0054ba |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
0054ba |
char m_expr; /* <expr> used, m_str is an expression */
|
|
Karsten Hopp |
0054ba |
scid_T m_script_ID; /* ID of script where map was defined */
|
|
Karsten Hopp |
0054ba |
--- 1004,1016 ----
|
|
Karsten Hopp |
0054ba |
{
|
|
Karsten Hopp |
0054ba |
mapblock_T *m_next; /* next mapblock in list */
|
|
Karsten Hopp |
0054ba |
char_u *m_keys; /* mapped from, lhs */
|
|
Karsten Hopp |
0054ba |
char_u *m_str; /* mapped to, rhs */
|
|
Karsten Hopp |
0054ba |
char_u *m_orig_str; /* rhs as entered by the user */
|
|
Karsten Hopp |
0054ba |
+ int m_keylen; /* strlen(m_keys) */
|
|
Karsten Hopp |
0054ba |
int m_mode; /* valid mode */
|
|
Karsten Hopp |
0054ba |
int m_noremap; /* if non-zero no re-mapping for m_str */
|
|
Karsten Hopp |
0054ba |
char m_silent; /* <silent> used, don't echo commands */
|
|
Karsten Hopp |
0054ba |
+ char m_nowait; /* <nowait> used */
|
|
Karsten Hopp |
0054ba |
#ifdef FEAT_EVAL
|
|
Karsten Hopp |
0054ba |
char m_expr; /* <expr> used, m_str is an expression */
|
|
Karsten Hopp |
0054ba |
scid_T m_script_ID; /* ID of script where map was defined */
|
|
Karsten Hopp |
0054ba |
*** ../vim-7.3.1263/src/version.c 2013-06-29 14:42:21.000000000 +0200
|
|
Karsten Hopp |
0054ba |
--- src/version.c 2013-06-29 14:45:27.000000000 +0200
|
|
Karsten Hopp |
0054ba |
***************
|
|
Karsten Hopp |
0054ba |
*** 730,731 ****
|
|
Karsten Hopp |
0054ba |
--- 730,733 ----
|
|
Karsten Hopp |
0054ba |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
0054ba |
+ /**/
|
|
Karsten Hopp |
0054ba |
+ 1264,
|
|
Karsten Hopp |
0054ba |
/**/
|
|
Karsten Hopp |
0054ba |
|
|
Karsten Hopp |
0054ba |
--
|
|
Karsten Hopp |
0054ba |
Have you heard about the new Barbie doll? It's called Divorce
|
|
Karsten Hopp |
0054ba |
Barbie. It comes with all of Ken's stuff.
|
|
Karsten Hopp |
0054ba |
|
|
Karsten Hopp |
0054ba |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
0054ba |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
0054ba |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
0054ba |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|