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.365 < prev    next >
Encoding:
Internet Message Format  |  2003-03-02  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.365
  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.365 (depends on 6.1.217)
  11. Problem:    Setting a breakpoint in a sourced file with a relative path name
  12.         doesn't work. (Servatius Brandt)
  13. Solution:   Expand the file name to a full path.
  14. Files:        src/ex_cmds2.c
  15.  
  16.  
  17. *** ../vim61.364/src/ex_cmds2.c    Mon Feb 24 11:29:14 2003
  18. --- src/ex_cmds2.c    Mon Mar  3 20:12:43 2003
  19. ***************
  20. *** 327,333 ****
  21.       EMSG2(_(e_invarg2), arg);
  22.       return FAIL;
  23.       }
  24. !     if ((bp->dbg_name = vim_strsave(p)) == NULL)
  25.       return FAIL;
  26.       return OK;
  27.   }
  28. --- 327,333 ----
  29.       EMSG2(_(e_invarg2), arg);
  30.       return FAIL;
  31.       }
  32. !     if ((bp->dbg_name = FullName_save(p, FALSE)) == NULL)
  33.       return FAIL;
  34.       return OK;
  35.   }
  36. *** ../vim61.364/src/version.c    Wed Feb 26 21:12:31 2003
  37. --- src/version.c    Mon Mar  3 20:15:48 2003
  38. ***************
  39. *** 608,609 ****
  40. --- 612,615 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     365,
  44.   /**/
  45.  
  46. -- 
  47. This message contains 78% recycled characters.
  48.  
  49.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  50. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  51. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  52.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  53.