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.291 < prev    next >
Encoding:
Internet Message Format  |  2008-03-31  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.1.291
  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.291 (after 7.1.288)
  11. Problem:    Compiler warning.
  12. Solution:   Change 50 to 50L.
  13. Files:        src/if_cscope.c
  14.  
  15.  
  16. *** ../vim-7.1.290/src/if_cscope.c    Tue Apr  1 14:30:18 2008
  17. --- src/if_cscope.c    Tue Apr  1 20:56:02 2008
  18. ***************
  19. *** 2163,2169 ****
  20.           waitpid_errno = errno;
  21.           if (pid != 0)
  22.           break;  /* break unless the process is still running */
  23. !         mch_delay(50, FALSE); /* sleep 50 ms */
  24.       }
  25.   # endif
  26.       /*
  27. --- 2163,2169 ----
  28.           waitpid_errno = errno;
  29.           if (pid != 0)
  30.           break;  /* break unless the process is still running */
  31. !         mch_delay(50L, FALSE); /* sleep 50 ms */
  32.       }
  33.   # endif
  34.       /*
  35. ***************
  36. *** 2198,2204 ****
  37.               alive = FALSE; /* cscope process no longer exists */
  38.               break;
  39.               }
  40. !             mch_delay(50, FALSE); /* sleep 50ms */
  41.           }
  42.           }
  43.           if (alive)
  44. --- 2198,2204 ----
  45.               alive = FALSE; /* cscope process no longer exists */
  46.               break;
  47.               }
  48. !             mch_delay(50L, FALSE); /* sleep 50ms */
  49.           }
  50.           }
  51.           if (alive)
  52. *** ../vim-7.1.290/src/version.c    Tue Apr  1 17:13:54 2008
  53. --- src/version.c    Tue Apr  1 20:58:11 2008
  54. ***************
  55. *** 668,669 ****
  56. --- 668,671 ----
  57.   {   /* Add new patch number below this line */
  58. + /**/
  59. +     291,
  60.   /**/
  61.  
  62. -- 
  63. hundred-and-one symptoms of being an internet addict:
  64. 210. When you get a divorce, you don't care about who gets the children,
  65.      but discuss endlessly who can use the email address.
  66.  
  67.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  68. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  69. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  70.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  71.