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.186 < prev    next >
Encoding:
Internet Message Format  |  2002-02-04  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.186
  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.186
  11. Problem:    X11: Three warnings when compiling the client-server code.
  12. Solution:   Add a typecast to unsigned char.
  13. Files:        src/if_xcmdsrv.c
  14.  
  15.  
  16. *** ../vim60.185/src/if_xcmdsrv.c    Sun Feb  3 16:32:18 2002
  17. --- src/if_xcmdsrv.c    Mon Feb  4 12:26:26 2002
  18. ***************
  19. *** 392,398 ****
  20.           if (result != NULL)
  21.           {
  22.           if (ret == NULL)
  23. !             *result = vim_strsave(_(e_invexprmsg));
  24.           else
  25.               *result = ret;
  26.           }
  27. --- 392,398 ----
  28.           if (result != NULL)
  29.           {
  30.           if (ret == NULL)
  31. !             *result = vim_strsave((char_u *)_(e_invexprmsg));
  32.           else
  33.               *result = ret;
  34.           }
  35. ***************
  36. *** 1238,1246 ****
  37.               ga_concat(&reply, res);
  38.           else if (asKeys == 0)
  39.           {
  40. !             ga_concat(&reply, _(e_invexprmsg));
  41.               ga_append(&reply, 0);
  42. !             ga_concat(&reply, "-c 1");
  43.           }
  44.           ga_append(&reply, 0);
  45.           (void)AppendPropCarefully(dpy, resWindow, commProperty,
  46. --- 1238,1246 ----
  47.               ga_concat(&reply, res);
  48.           else if (asKeys == 0)
  49.           {
  50. !             ga_concat(&reply, (char_u *)_(e_invexprmsg));
  51.               ga_append(&reply, 0);
  52. !             ga_concat(&reply, (char_u *)"-c 1");
  53.           }
  54.           ga_append(&reply, 0);
  55.           (void)AppendPropCarefully(dpy, resWindow, commProperty,
  56. *** ../vim60.185/src/version.c    Tue Feb  5 13:38:06 2002
  57. --- src/version.c    Tue Feb  5 13:35:44 2002
  58. ***************
  59. *** 608,609 ****
  60. --- 608,611 ----
  61.   {   /* Add new patch number below this line */
  62. + /**/
  63. +     186,
  64.   /**/
  65.  
  66. -- 
  67. hundred-and-one symptoms of being an internet addict:
  68. 222. You send more than 20 personal e-mails a day.
  69.  
  70.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  71. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  72.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  73.