|
Karsten Hopp |
ea2046 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ea2046 |
Subject: Patch 7.3.526
|
|
Karsten Hopp |
ea2046 |
Fcc: outbox
|
|
Karsten Hopp |
ea2046 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ea2046 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ea2046 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ea2046 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ea2046 |
------------
|
|
Karsten Hopp |
ea2046 |
|
|
Karsten Hopp |
ea2046 |
Patch 7.3.526
|
|
Karsten Hopp |
ea2046 |
Problem: Confusing indenting for #ifdef.
|
|
Karsten Hopp |
ea2046 |
Solution: Remove and add indent. (Elias Diem)
|
|
Karsten Hopp |
ea2046 |
Files: src/normal.c
|
|
Karsten Hopp |
ea2046 |
|
|
Karsten Hopp |
ea2046 |
|
|
Karsten Hopp |
ea2046 |
*** ../vim-7.3.525/src/normal.c 2012-04-30 18:18:43.000000000 +0200
|
|
Karsten Hopp |
ea2046 |
--- src/normal.c 2012-05-23 20:35:13.000000000 +0200
|
|
Karsten Hopp |
ea2046 |
***************
|
|
Karsten Hopp |
ea2046 |
*** 29,37 ****
|
|
Karsten Hopp |
ea2046 |
static void set_vcount_ca __ARGS((cmdarg_T *cap, int *set_prevcount));
|
|
Karsten Hopp |
ea2046 |
#endif
|
|
Karsten Hopp |
ea2046 |
static int
|
|
Karsten Hopp |
ea2046 |
! # ifdef __BORLANDC__
|
|
Karsten Hopp |
ea2046 |
! _RTLENTRYF
|
|
Karsten Hopp |
ea2046 |
! # endif
|
|
Karsten Hopp |
ea2046 |
nv_compare __ARGS((const void *s1, const void *s2));
|
|
Karsten Hopp |
ea2046 |
static int find_command __ARGS((int cmdchar));
|
|
Karsten Hopp |
ea2046 |
static void op_colon __ARGS((oparg_T *oap));
|
|
Karsten Hopp |
ea2046 |
--- 29,37 ----
|
|
Karsten Hopp |
ea2046 |
static void set_vcount_ca __ARGS((cmdarg_T *cap, int *set_prevcount));
|
|
Karsten Hopp |
ea2046 |
#endif
|
|
Karsten Hopp |
ea2046 |
static int
|
|
Karsten Hopp |
ea2046 |
! #ifdef __BORLANDC__
|
|
Karsten Hopp |
ea2046 |
! _RTLENTRYF
|
|
Karsten Hopp |
ea2046 |
! #endif
|
|
Karsten Hopp |
ea2046 |
nv_compare __ARGS((const void *s1, const void *s2));
|
|
Karsten Hopp |
ea2046 |
static int find_command __ARGS((int cmdchar));
|
|
Karsten Hopp |
ea2046 |
static void op_colon __ARGS((oparg_T *oap));
|
|
Karsten Hopp |
ea2046 |
*** ../vim-7.3.525/src/version.c 2012-05-25 11:02:34.000000000 +0200
|
|
Karsten Hopp |
ea2046 |
--- src/version.c 2012-05-25 11:03:37.000000000 +0200
|
|
Karsten Hopp |
ea2046 |
***************
|
|
Karsten Hopp |
ea2046 |
*** 716,717 ****
|
|
Karsten Hopp |
ea2046 |
--- 716,719 ----
|
|
Karsten Hopp |
ea2046 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ea2046 |
+ /**/
|
|
Karsten Hopp |
ea2046 |
+ 526,
|
|
Karsten Hopp |
ea2046 |
/**/
|
|
Karsten Hopp |
ea2046 |
|
|
Karsten Hopp |
ea2046 |
--
|
|
Karsten Hopp |
ea2046 |
While it's true that many normal people whould prefer not to _date_ an
|
|
Karsten Hopp |
ea2046 |
engineer, most normal people harbor an intense desire to _mate_ with them,
|
|
Karsten Hopp |
ea2046 |
thus producing engineerlike children who will have high-paying jobs long
|
|
Karsten Hopp |
ea2046 |
before losing their virginity.
|
|
Karsten Hopp |
ea2046 |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
ea2046 |
|
|
Karsten Hopp |
ea2046 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ea2046 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ea2046 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ea2046 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|