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.4 / 7.4.193 < prev    next >
Encoding:
Internet Message Format  |  2014-03-07  |  3.5 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.193
  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.4.193
  11. Problem:    Typos in messages.
  12. Solution:   "then" -> "than". (Dominique Pelle)
  13. Files:        src/if_py_both.h, src/spell.c
  14.  
  15.  
  16. *** ../vim-7.4.192/src/if_py_both.h    2014-02-15 15:58:55.081904773 +0100
  17. --- src/if_py_both.h    2014-03-08 16:10:46.015459417 +0100
  18. ***************
  19. *** 236,242 ****
  20.       if (*result <= 0)
  21.       {
  22.           PyErr_SET_STRING(PyExc_ValueError,
  23. !             N_("number must be greater then zero"));
  24.           return -1;
  25.       }
  26.       }
  27. --- 236,242 ----
  28.       if (*result <= 0)
  29.       {
  30.           PyErr_SET_STRING(PyExc_ValueError,
  31. !             N_("number must be greater than zero"));
  32.           return -1;
  33.       }
  34.       }
  35. ***************
  36. *** 2405,2411 ****
  37.       if ((item = PyIter_Next(iterator)))
  38.       {
  39.           PyErr_FORMAT(PyExc_ValueError,
  40. !             N_("attempt to assign sequence of size greater then %d "
  41.               "to extended slice"), 0);
  42.           Py_DECREF(item);
  43.           ret = -1;
  44. --- 2405,2411 ----
  45.       if ((item = PyIter_Next(iterator)))
  46.       {
  47.           PyErr_FORMAT(PyExc_ValueError,
  48. !             N_("attempt to assign sequence of size greater than %d "
  49.               "to extended slice"), 0);
  50.           Py_DECREF(item);
  51.           ret = -1;
  52. ***************
  53. *** 2510,2516 ****
  54.       {
  55.           Py_DECREF(iterator);
  56.           PyErr_FORMAT(PyExc_ValueError,
  57. !             N_("attempt to assign sequence of size greater then %d "
  58.               "to extended slice"), (int) slicelen);
  59.           list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
  60.           PyMem_Free(lis);
  61. --- 2510,2516 ----
  62.       {
  63.           Py_DECREF(iterator);
  64.           PyErr_FORMAT(PyExc_ValueError,
  65. !             N_("attempt to assign sequence of size greater than %d "
  66.               "to extended slice"), (int) slicelen);
  67.           list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
  68.           PyMem_Free(lis);
  69. *** ../vim-7.4.192/src/spell.c    2014-02-23 22:52:33.372764715 +0100
  70. --- src/spell.c    2014-03-08 16:10:46.019459417 +0100
  71. ***************
  72. *** 12037,12043 ****
  73.           /* Normal byte, go one level deeper.  If it's not equal to the
  74.            * byte in the bad word adjust the score.  But don't even try
  75.            * when the byte was already changed.  And don't try when we
  76. !          * just deleted this byte, accepting it is always cheaper then
  77.            * delete + substitute. */
  78.           if (c == fword[sp->ts_fidx]
  79.   #ifdef FEAT_MBYTE
  80. --- 12037,12043 ----
  81.           /* Normal byte, go one level deeper.  If it's not equal to the
  82.            * byte in the bad word adjust the score.  But don't even try
  83.            * when the byte was already changed.  And don't try when we
  84. !          * just deleted this byte, accepting it is always cheaper than
  85.            * delete + substitute. */
  86.           if (c == fword[sp->ts_fidx]
  87.   #ifdef FEAT_MBYTE
  88. *** ../vim-7.4.192/src/version.c    2014-02-24 03:31:55.816738026 +0100
  89. --- src/version.c    2014-03-08 16:11:51.591460422 +0100
  90. ***************
  91. *** 740,741 ****
  92. --- 740,743 ----
  93.   {   /* Add new patch number below this line */
  94. + /**/
  95. +     193,
  96.   /**/
  97.  
  98. -- 
  99. BEDEVERE: How do you know so much about swallows?
  100. ARTHUR:   Well you have to know these things when you're a king, you know.
  101.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  102.  
  103.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  104. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  105. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  106.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  107.