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.086 < prev    next >
Encoding:
Internet Message Format  |  2001-11-05  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.086
  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.086
  11. Problem:    When using "gu" the message says "~ed".
  12. Solution:   Make the message say "changed".
  13. Files:        src/ops.c
  14.  
  15.  
  16. *** ../vim60.85/src/ops.c    Sun Nov  4 13:15:58 2001
  17. --- src/ops.c    Sat Nov  3 21:25:47 2001
  18. ***************
  19. *** 1948,1954 ****
  20.   #endif
  21.   
  22.   /*
  23. !  * Handle the (non-standard vi) tilde operator.  Also for "gu" and "gU".
  24.    */
  25.       void
  26.   op_tilde(oap)
  27. --- 1948,1954 ----
  28.   #endif
  29.   
  30.   /*
  31. !  * Handle the (non-standard vi) tilde operator.  Also for "gu", "gU" and "g?".
  32.    */
  33.       void
  34.   op_tilde(oap)
  35. ***************
  36. *** 2018,2032 ****
  37.       if (oap->line_count > p_report)
  38.       {
  39.       if (oap->line_count == 1)
  40. !         MSG(_("1 line ~ed"));
  41.       else
  42. !         smsg((char_u *)_("%ld lines ~ed"), oap->line_count);
  43.       }
  44.   }
  45.   
  46.   /*
  47.    * If op_type == OP_UPPER: make uppercase,
  48.    * if op_type == OP_LOWER: make lowercase,
  49.    * else swap case of character at 'pos'
  50.    * returns TRUE when something actually changed.
  51.    */
  52. --- 2018,2033 ----
  53.       if (oap->line_count > p_report)
  54.       {
  55.       if (oap->line_count == 1)
  56. !         MSG(_("1 line changed"));
  57.       else
  58. !         smsg((char_u *)_("%ld lines changed"), oap->line_count);
  59.       }
  60.   }
  61.   
  62.   /*
  63.    * If op_type == OP_UPPER: make uppercase,
  64.    * if op_type == OP_LOWER: make lowercase,
  65. +  * if op_type == OP_ROT13: do rot13 encoding,
  66.    * else swap case of character at 'pos'
  67.    * returns TRUE when something actually changed.
  68.    */
  69. *** ../vim60.85/src/version.c    Tue Nov  6 14:39:24 2001
  70. --- src/version.c    Tue Nov  6 15:51:38 2001
  71. ***************
  72. *** 608,609 ****
  73. --- 608,611 ----
  74.   {   /* Add new patch number below this line */
  75. + /**/
  76. +     86,
  77.   /**/
  78.  
  79. -- 
  80. Anyone who is capable of getting themselves made President should on no
  81. account be allowed to do the job.
  82.         -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
  83.  
  84.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  85. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  86.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  87.