|
Karsten Hopp |
aaf5df |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
aaf5df |
Subject: Patch 7.3.1190
|
|
Karsten Hopp |
aaf5df |
Fcc: outbox
|
|
Karsten Hopp |
aaf5df |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
aaf5df |
Mime-Version: 1.0
|
|
Karsten Hopp |
aaf5df |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
aaf5df |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
aaf5df |
------------
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
Patch 7.3.1190
|
|
Karsten Hopp |
aaf5df |
Problem: Compiler warning for parentheses. (Christian Wellenbrock)
|
|
Karsten Hopp |
aaf5df |
Solution: Change #ifdef.
|
|
Karsten Hopp |
aaf5df |
Files: src/ex_docmd.c
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
*** ../vim-7.3.1189/src/ex_docmd.c 2013-06-12 17:12:19.000000000 +0200
|
|
Karsten Hopp |
aaf5df |
--- src/ex_docmd.c 2013-06-14 19:08:10.000000000 +0200
|
|
Karsten Hopp |
aaf5df |
***************
|
|
Karsten Hopp |
aaf5df |
*** 8568,8578 ****
|
|
Karsten Hopp |
aaf5df |
break;
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
default: /* CMD_rshift or CMD_lshift */
|
|
Karsten Hopp |
aaf5df |
! if ((eap->cmdidx == CMD_rshift)
|
|
Karsten Hopp |
aaf5df |
#ifdef FEAT_RIGHTLEFT
|
|
Karsten Hopp |
aaf5df |
! ^ curwin->w_p_rl
|
|
Karsten Hopp |
aaf5df |
#endif
|
|
Karsten Hopp |
aaf5df |
! )
|
|
Karsten Hopp |
aaf5df |
oa.op_type = OP_RSHIFT;
|
|
Karsten Hopp |
aaf5df |
else
|
|
Karsten Hopp |
aaf5df |
oa.op_type = OP_LSHIFT;
|
|
Karsten Hopp |
aaf5df |
--- 8568,8580 ----
|
|
Karsten Hopp |
aaf5df |
break;
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
default: /* CMD_rshift or CMD_lshift */
|
|
Karsten Hopp |
aaf5df |
! if (
|
|
Karsten Hopp |
aaf5df |
#ifdef FEAT_RIGHTLEFT
|
|
Karsten Hopp |
aaf5df |
! (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
|
|
Karsten Hopp |
aaf5df |
! #else
|
|
Karsten Hopp |
aaf5df |
! eap->cmdidx == CMD_rshift
|
|
Karsten Hopp |
aaf5df |
#endif
|
|
Karsten Hopp |
aaf5df |
! )
|
|
Karsten Hopp |
aaf5df |
oa.op_type = OP_RSHIFT;
|
|
Karsten Hopp |
aaf5df |
else
|
|
Karsten Hopp |
aaf5df |
oa.op_type = OP_LSHIFT;
|
|
Karsten Hopp |
aaf5df |
*** ../vim-7.3.1189/src/version.c 2013-06-13 22:59:25.000000000 +0200
|
|
Karsten Hopp |
aaf5df |
--- src/version.c 2013-06-14 19:14:40.000000000 +0200
|
|
Karsten Hopp |
aaf5df |
***************
|
|
Karsten Hopp |
aaf5df |
*** 730,731 ****
|
|
Karsten Hopp |
aaf5df |
--- 730,733 ----
|
|
Karsten Hopp |
aaf5df |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
aaf5df |
+ /**/
|
|
Karsten Hopp |
aaf5df |
+ 1190,
|
|
Karsten Hopp |
aaf5df |
/**/
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
--
|
|
Karsten Hopp |
aaf5df |
Some of the well known MS-Windows errors:
|
|
Karsten Hopp |
aaf5df |
ETIME Wrong time, wait a little while
|
|
Karsten Hopp |
aaf5df |
ECRASH Try again...
|
|
Karsten Hopp |
aaf5df |
EDETECT Unable to detect errors
|
|
Karsten Hopp |
aaf5df |
EOVER You lost! Play another game?
|
|
Karsten Hopp |
aaf5df |
ENOCLUE Eh, what did you want?
|
|
Karsten Hopp |
aaf5df |
|
|
Karsten Hopp |
aaf5df |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
aaf5df |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
aaf5df |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
aaf5df |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|