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.016 < prev    next >
Encoding:
Internet Message Format  |  2001-10-18  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.016
  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.016
  11. Problem:    bufnr(), bufname() and bufwinnr() don't find unlisted buffers when
  12.             the argument is a string. (Hari Krishna Dara)
  13.             Also for setbufvar() and getbufvar().
  14. Solution:   Also find unlisted buffers.
  15. Files:      src/eval.c
  16.  
  17.  
  18. *** ../vim60.15/src/eval.c    Mon Sep 24 20:56:45 2001
  19. --- src/eval.c    Fri Oct 19 17:20:49 2001
  20. ***************
  21. *** 2908,2914 ****
  22.       p_cpo = (char_u *)"";
  23.   
  24.       buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
  25. !                                    FALSE, FALSE));
  26.   
  27.       p_magic = save_magic;
  28.       p_cpo = save_cpo;
  29. --- 2908,2914 ----
  30.       p_cpo = (char_u *)"";
  31.   
  32.       buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
  33. !                                 TRUE, FALSE));
  34.   
  35.       p_magic = save_magic;
  36.       p_cpo = save_cpo;
  37. *** ../vim60.15/src/version.c    Fri Oct 19 17:27:43 2001
  38. --- src/version.c    Fri Oct 19 17:23:09 2001
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     16,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 104. When people ask about the Presidential Election you ask "Which country?"
  50.  
  51.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  52. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  53.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  54.