home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.0.028 < prev    next >
Encoding:
Internet Message Format  |  2001-10-27  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.028
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.028
  11. Problem:    Can't compile without +virtualedit and with +visualextra. (Geza
  12.         Lakner)
  13. Solution:   Add an #ifdef for +virtualedit.
  14. Files:        src/ops.c
  15.  
  16.  
  17. *** ../vim60.27/src/ops.c    Wed Sep 19 12:39:06 2001
  18. --- src/ops.c    Sun Oct 28 16:38:35 2001
  19. ***************
  20. *** 2134,2140 ****
  21.   
  22.       if (oap->op_type == OP_APPEND)
  23.       {
  24. !     if (oap->block_mode && curwin->w_cursor.coladd == 0)
  25.       {
  26.           /* this lil bit if code adapted from nv_append() */
  27.           curwin->w_set_curswant = TRUE;
  28. --- 2135,2145 ----
  29.   
  30.       if (oap->op_type == OP_APPEND)
  31.       {
  32. !     if (oap->block_mode
  33. ! #ifdef FEAT_VIRTUALEDIT
  34. !         && curwin->w_cursor.coladd == 0
  35. ! #endif
  36. !        )
  37.       {
  38.           /* this lil bit if code adapted from nv_append() */
  39.           curwin->w_set_curswant = TRUE;
  40. *** ../vim60.27/src/version.c    Thu Oct 25 16:34:24 2001
  41. --- src/version.c    Sun Oct 28 16:40:22 2001
  42. ***************
  43. *** 608,609 ****
  44. --- 608,611 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     28,
  48.   /**/
  49.  
  50. -- 
  51. ARTHUR:  You fight with the strength of many men, Sir knight.
  52.          I am Arthur, King of the Britons.  [pause]
  53.          I seek the finest and the bravest knights in the land to join me
  54.          in my Court of Camelot.  [pause]
  55.          You have proved yourself worthy; will you join me?  [pause]
  56.          You make me sad.  So be it.  Come, Patsy.
  57. BLACK KNIGHT:  None shall pass.
  58.                                   The Quest for the Holy Grail (Monty Python)
  59.  
  60.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  61. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  62.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  63.