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.101 < prev    next >
Encoding:
Internet Message Format  |  2001-12-14  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.101
  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.101
  11. Problem:    ":mksession" doesn't restore editing a file that has a '#' or '%'
  12.             in its name.  (Wolfgang Blankenburg)
  13. Solution:   Put a backslash before the '#' and '%'.
  14. Files:      src/ex_docmd.c
  15.  
  16.  
  17. *** ../vim60.100/src/ex_docmd.c    Sat Dec 15 21:40:46 2001
  18. --- src/ex_docmd.c    Sat Dec 15 21:34:01 2001
  19. ***************
  20. *** 8469,8474 ****
  21. --- 8469,8476 ----
  22.   #ifdef BACKSLASH_IN_FILENAME
  23.           && c != '\\'
  24.   #endif
  25. +         || c == '#'
  26. +         || c == '%'
  27.           )
  28.       {
  29.           /* escape a special character with a backslash */
  30. *** ../vim60.100/src/version.c    Sat Dec 15 21:40:46 2001
  31. --- src/version.c    Sat Dec 15 21:41:44 2001
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     101,
  38.   /**/
  39.  
  40. -- 
  41. hundred-and-one symptoms of being an internet addict:
  42. 117. You are more comfortable typing in html.
  43.  
  44.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  45. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  46.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  47.