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.219 < prev    next >
Encoding:
Internet Message Format  |  2002-02-10  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.219
  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.219
  11. Problem:    ":setlocal" and ":setglobal", without arguments, display terminal
  12.         options. (Zdenek Sekera)
  13. Solution:   Skip terminal options for these two commands.
  14. Files:        src/option.c
  15.  
  16.  
  17. *** ../vim60.218/src/option.c    Mon Feb 11 12:01:33 2002
  18. --- src/option.c    Mon Feb 11 20:28:18 2002
  19. ***************
  20. *** 6555,6566 ****
  21.       item_count = 0;
  22.       for (p = &options[0]; p->fullname != NULL; p++)
  23.       {
  24.           isterm = istermoption(p);
  25. !         if (!isterm && opt_flags != 0)
  26.           {
  27. !         if (p->indir == PV_NONE)
  28. !             varp = NULL;
  29. !         else
  30.               varp = get_varp_scope(p, opt_flags);
  31.           }
  32.           else
  33. --- 6554,6564 ----
  34.       item_count = 0;
  35.       for (p = &options[0]; p->fullname != NULL; p++)
  36.       {
  37. +         varp = NULL;
  38.           isterm = istermoption(p);
  39. !         if (opt_flags != 0)
  40.           {
  41. !         if (p->indir != PV_NONE && !isterm)
  42.               varp = get_varp_scope(p, opt_flags);
  43.           }
  44.           else
  45. *** ../vim60.218/src/version.c    Mon Feb 11 19:58:15 2002
  46. --- src/version.c    Mon Feb 11 20:29:57 2002
  47. ***************
  48. *** 608,609 ****
  49. --- 608,611 ----
  50.   {   /* Add new patch number below this line */
  51. + /**/
  52. +     219,
  53.   /**/
  54.  
  55. -- 
  56. ARTHUR:  I am your king!
  57. WOMAN:   Well, I didn't vote for you.
  58. ARTHUR:  You don't vote for kings.
  59. WOMAN:   Well, 'ow did you become king then?
  60.                                   The Quest for the Holy Grail (Monty Python)
  61.  
  62.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  63. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  64.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  65.