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

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.084
  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.084
  11. Problem:    UTF-8: a "r" command with an argument that is a keymap for a
  12.         character with a composing character can't be repeated with ".".
  13.         (Raphael Finkel)
  14. Solution:   Add the composing characters to the redo buffer.
  15. Files:        src/normal.c
  16.  
  17.  
  18. *** ../vim60.83/src/normal.c    Sun Nov  4 19:10:16 2001
  19. --- src/normal.c    Tue Nov  6 14:19:12 2001
  20. ***************
  21. *** 5854,5859 ****
  22. --- 5854,5864 ----
  23.       {
  24.           int        old_State = State;
  25.   
  26. +         if (cap->ncharC1 != 0)
  27. +         AppendCharToRedobuff(cap->ncharC1);
  28. +         if (cap->ncharC2 != 0)
  29. +         AppendCharToRedobuff(cap->ncharC2);
  30.           /* This is slow, but it handles replacing a single-byte with a
  31.            * multi-byte and the other way around.  Also handles adding
  32.            * composing characters for utf-8. */
  33. *** ../vim60.83/src/version.c    Tue Nov  6 11:58:54 2001
  34. --- src/version.c    Tue Nov  6 14:24:11 2001
  35. ***************
  36. *** 608,609 ****
  37. --- 608,611 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     84,
  41.   /**/
  42.  
  43. -- 
  44. Q: What is the difference betwee open-source and commercial software?
  45. A: If you have a problem with commercial software you can call a phone
  46.    number and they will tell you it might be solved in a future version.
  47.    For open-source sofware there isn't a phone number to call, but you
  48.    get the solution within a day.
  49.  
  50.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  51. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  52.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  53.