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.155 < prev    next >
Encoding:
Internet Message Format  |  2002-01-28  |  1.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.155
  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.155
  11. Problem:    Mac: compilation problems in ui.c after patch 6.0.145. (Axel
  12.         Kielhorn)
  13. Solution:   Don't call mch_inchar() when NO_CONSOLE is defined.
  14. Files:        src/ui.c
  15.  
  16.  
  17. *** ../vim60.154/src/ui.c    Tue Jan 22 13:24:04 2002
  18. --- src/ui.c    Sun Jan 27 10:58:44 2002
  19. ***************
  20. *** 141,149 ****
  21. --- 141,151 ----
  22.       {
  23.       static int count = 0;
  24.   
  25. + #ifndef NO_CONSOLE
  26.       retval = mch_inchar(buf, maxlen, 10L);
  27.       if (retval > 0)
  28.           return retval;
  29. + #endif
  30.       if (wtime == -1 && ++count == 1000)
  31.           read_error_exit();
  32.       buf[0] = CR;
  33. *** ../vim60.154/src/version.c    Mon Jan 28 16:11:30 2002
  34. --- src/version.c    Tue Jan 29 16:21:27 2002
  35. ***************
  36. *** 608,609 ****
  37. --- 608,611 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     155,
  41.   /**/
  42.  
  43. -- 
  44. From "know your smileys":
  45.  :-X    My lips are sealed
  46.  
  47.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  48. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  49.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  50.