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 / 7.3 / 7.3.293 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  2.3 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.293
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.293
  11. Problem:    MSVC compiler has a problem with non-ASCII characters.
  12. Solution:   Avoid non-ASCII characters. (Hong Xu)
  13. Files:        src/ascii.h, src/spell.c
  14.  
  15.  
  16. *** ../vim-7.3.292/src/ascii.h    2011-05-10 16:41:13.000000000 +0200
  17. --- src/ascii.h    2011-09-02 14:12:48.000000000 +0200
  18. ***************
  19. *** 123,129 ****
  20.   #define DCS        0x90    /* Device Control String */
  21.   #define STERM        0x9c    /* String Terminator */
  22.   
  23. ! #define POUND        'ú'
  24.   
  25.   #define CTRL_F_STR    "\056"
  26.   #define CTRL_H_STR    "\026"
  27. --- 123,129 ----
  28.   #define DCS        0x90    /* Device Control String */
  29.   #define STERM        0x9c    /* String Terminator */
  30.   
  31. ! #define POUND        '\xA3'
  32.   
  33.   #define CTRL_F_STR    "\056"
  34.   #define CTRL_H_STR    "\026"
  35. *** ../vim-7.3.292/src/spell.c    2011-04-11 21:35:03.000000000 +0200
  36. --- src/spell.c    2011-09-02 14:13:30.000000000 +0200
  37. ***************
  38. *** 11197,11203 ****
  39.           c = *s++;
  40.   
  41.   #ifdef FEAT_MBYTE
  42. !     /* We only change ▀ to SS when we are certain latin1 is used.  It
  43.        * would cause weird errors in other 8-bit encodings. */
  44.       if (enc_latin1like && c == 0xdf)
  45.       {
  46. --- 11197,11203 ----
  47.           c = *s++;
  48.   
  49.   #ifdef FEAT_MBYTE
  50. !     /* We only change 0xdf to SS when we are certain latin1 is used.  It
  51.        * would cause weird errors in other 8-bit encodings. */
  52.       if (enc_latin1like && c == 0xdf)
  53.       {
  54. *** ../vim-7.3.292/src/version.c    2011-09-02 14:07:31.000000000 +0200
  55. --- src/version.c    2011-09-02 14:13:57.000000000 +0200
  56. ***************
  57. *** 711,712 ****
  58. --- 711,714 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     293,
  62.   /**/
  63.  
  64. -- 
  65.    A village.  Sound of chanting of Latin canon, punctuated by short, sharp
  66.    cracks.  It comes nearer.  We see it is a line of MONKS ala SEVENTH SEAL
  67.    flagellation scene, chanting and banging themselves on the foreheads with
  68.    wooden boards.
  69.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  70.  
  71.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  72. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  73. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  74.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  75.