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.1.266 < prev    next >
Encoding:
Internet Message Format  |  2002-12-22  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.266
  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.1.266 (depends on 6.1.265)
  11. Problem:    Win32: compile error in eval.c. (Bill McCarthy)
  12. Solution:   Move a variable declaration.
  13. Files:        src/eval.c
  14.  
  15.  
  16. *** ../vim61.265/src/eval.c    Mon Dec 23 21:24:23 2002
  17. --- src/eval.c    Mon Dec 23 22:42:47 2002
  18. ***************
  19. *** 5781,5786 ****
  20. --- 5781,5789 ----
  21.   #ifdef FEAT_CLIENTSERVER
  22.       var        v;
  23.       char_u    *s;
  24. + # ifdef WIN32
  25. +     int        n = 0;
  26. + # endif
  27.   
  28.       if (check_restricted() || check_secure())
  29.       {
  30. ***************
  31. *** 5788,5795 ****
  32.       return;
  33.       }
  34.   # ifdef WIN32
  35. -     int        n = 0;
  36.       sscanf(get_var_string(&argvars[0]), "%x", &n);
  37.       if (n == 0)
  38.       retvar->var_val.var_number = -1;
  39. --- 5791,5796 ----
  40. *** ../vim61.265/src/version.c    Mon Dec 23 21:24:23 2002
  41. --- src/version.c    Mon Dec 23 22:43:59 2002
  42. ***************
  43. *** 608,609 ****
  44. --- 608,611 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     266,
  48.   /**/
  49.  
  50. -- 
  51. hundred-and-one symptoms of being an internet addict:
  52. 149. You find your computer sexier than your girlfriend
  53.  
  54.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  55. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  56. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  57.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  58.