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.1 / 7.1.193 < prev    next >
Encoding:
Internet Message Format  |  2008-01-02  |  2.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.1.193
  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 7.1.193
  11. Problem:    Some Vim 5.x digraphs are missing in Vim 7, even though the
  12.         character pairs are not used. (Philippe de Muyter)
  13. Solution:   Add those Vim 5.x digraphs that don't conflict with others.
  14. Files:        src/digraph.c
  15.  
  16.  
  17. *** ../vim-7.1.192/src/digraph.c    Thu Sep 13 18:25:08 2007
  18. --- src/digraph.c    Thu Jan  3 17:48:47 2008
  19. ***************
  20. *** 1978,1983 ****
  21. --- 1978,2038 ----
  22.       {'f', 't', 0xfb05},
  23.       {'s', 't', 0xfb06},
  24.   #      endif /* FEAT_MBYTE */
  25. +     /* Vim 5.x compatible digraphs that don't conflict with the above */
  26. +     {'~', '!', 161},    /* í */
  27. +     {'c', '|', 162},    /* ó */
  28. +     {'$', '$', 163},    /* ú */
  29. +     {'o', 'x', 164},    /* ñ - currency symbol in ISO 8859-1 */
  30. +     {'Y', '-', 165},    /* Ñ */
  31. +     {'|', '|', 166},    /* ª */
  32. +     {'c', 'O', 169},    /* ⌐ */
  33. +     {'-', ',', 172},    /* ¼ */
  34. +     {'-', '=', 175},    /* » */
  35. +     {'~', 'o', 176},    /* ░ */
  36. +     {'2', '2', 178},    /* ▓ */
  37. +     {'3', '3', 179},    /* │ */
  38. +     {'p', 'p', 182},    /* ╢ */
  39. +     {'~', '.', 183},    /* ╖ */
  40. +     {'1', '1', 185},    /* ╣ */
  41. +     {'~', '?', 191},    /* ┐ */
  42. +     {'A', '`', 192},    /* └ */
  43. +     {'A', '^', 194},    /* ┬ */
  44. +     {'A', '~', 195},    /* ├ */
  45. +     {'A', '"', 196},    /* ─ */
  46. +     {'A', '@', 197},    /* ┼ */
  47. +     {'E', '`', 200},    /* ╚ */
  48. +     {'E', '^', 202},    /* ╩ */
  49. +     {'E', '"', 203},    /* ╦ */
  50. +     {'I', '`', 204},    /* ╠ */
  51. +     {'I', '^', 206},    /* ╬ */
  52. +     {'I', '"', 207},    /* ╧ */
  53. +     {'N', '~', 209},    /* ╤ */
  54. +     {'O', '`', 210},    /* ╥ */
  55. +     {'O', '^', 212},    /* ╘ */
  56. +     {'O', '~', 213},    /* ╒ */
  57. +     {'/', '\\', 215},    /* ╫ - multiplication symbol in ISO 8859-1 */
  58. +     {'U', '`', 217},    /* ┘ */
  59. +     {'U', '^', 219},    /* █ */
  60. +     {'I', 'p', 222},    /* ▐ */
  61. +     {'a', '`', 224},    /* α */
  62. +     {'a', '^', 226},    /* Γ */
  63. +     {'a', '~', 227},    /* π */
  64. +     {'a', '"', 228},    /* Σ */
  65. +     {'a', '@', 229},    /* σ */
  66. +     {'e', '`', 232},    /* Φ */
  67. +     {'e', '^', 234},    /* Ω */
  68. +     {'e', '"', 235},    /* δ */
  69. +     {'i', '`', 236},    /* ∞ */
  70. +     {'i', '^', 238},    /* ε */
  71. +     {'n', '~', 241},    /* ± */
  72. +     {'o', '`', 242},    /* ≥ */
  73. +     {'o', '^', 244},    /* ⌠ */
  74. +     {'o', '~', 245},    /* ⌡ */
  75. +     {'u', '`', 249},    /* ∙ */
  76. +     {'u', '^', 251},    /* √ */
  77. +     {'y', '"', 255},    /* x XX */
  78.       {NUL, NUL, NUL}
  79.          };
  80.   
  81. *** ../vim-7.1.192/src/version.c    Thu Jan  3 16:31:17 2008
  82. --- src/version.c    Thu Jan  3 17:52:51 2008
  83. ***************
  84. *** 668,669 ****
  85. --- 668,671 ----
  86.   {   /* Add new patch number below this line */
  87. + /**/
  88. +     193,
  89.   /**/
  90.  
  91. -- 
  92. Futility Factor: No experiment is ever a complete failure - it can always
  93. serve as a negative example.
  94.  
  95.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  96. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  97. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  98.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  99.