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 / 7.0 / 7.0.180 < prev    next >
Encoding:
Internet Message Format  |  2007-01-08  |  3.0 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 7.0.180 (extra)
  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 7.0.180 (extra, after 7.0.171)
  11. Problem:    VMS: build failed.  Problem with swapfiles.
  12. Solution:   Add "compiled_arch".  Always expand path and pass it to
  13.         buf_modname().  (Zoltan Arpadffy)
  14. Files:        src/globals.h, src/memline.c, src/os_unix.c, runtime/menu.vim
  15.  
  16.  
  17. *** ../vim-7.0.179/src/globals.h    Sat Oct 14 14:33:21 2006
  18. --- src/globals.h    Tue Jan  9 14:26:51 2007
  19. ***************
  20. *** 1092,1097 ****
  21. --- 1092,1098 ----
  22.   extern char_u *all_lflags;
  23.   # ifdef VMS
  24.   extern char_u *compiler_version;
  25. + extern char_u *compiled_arch;
  26.   # endif
  27.   extern char_u *compiled_user;
  28.   extern char_u *compiled_sys;
  29. *** ../vim-7.0.179/src/memline.c    Tue Jan  9 14:37:10 2007
  30. --- src/memline.c    Tue Jan  9 14:33:44 2007
  31. ***************
  32. *** 3572,3579 ****
  33.   #else
  34.           (buf->b_p_sn || buf->b_shortname),
  35.   #endif
  36. ! #ifdef RISCOS
  37. !         /* Avoid problems if fname has special chars, eg <Wimp$Scrap> */
  38.           ffname,
  39.   #else
  40.   # ifdef HAVE_READLINK
  41. --- 3572,3580 ----
  42.   #else
  43.           (buf->b_p_sn || buf->b_shortname),
  44.   #endif
  45. ! #if defined(VMS) || defined(RISCOS)
  46. !         /* Avoid problems if fname has special chars, eg <Wimp$Scrap>.
  47. !          * For VMS always use full path for swapfile. */
  48.           ffname,
  49.   #else
  50.   # ifdef HAVE_READLINK
  51. *** ../vim-7.0.179/src/os_unix.c    Tue Nov 28 17:44:51 2006
  52. --- src/os_unix.c    Tue Jan  9 14:31:08 2007
  53. ***************
  54. *** 2221,2227 ****
  55.        * behaviour should be avoided for the existing files and we need to find
  56.        * the exact path of the edited file.
  57.        */
  58. -     if (force || !mch_isFullName(fname))
  59.       {
  60.       char_u    *fixed_fname = vms_fixfilename(fname);
  61.       int    fd = mch_open((char *)fixed_fname, O_RDONLY | O_EXTRA, 0);
  62. --- 2221,2226 ----
  63. *** ../vim-7.0.179/runtime/menu.vim    Thu Sep 14 13:35:17 2006
  64. --- runtime/menu.vim    Tue Jan  9 14:31:40 2007
  65. ***************
  66. *** 384,390 ****
  67.   " Programming menu
  68.   if !exists("g:ctags_command")
  69.     if has("vms")
  70. !     let g:ctags_command = "mc vim:ctags ."
  71.     else
  72.       let g:ctags_command = "ctags -R ."
  73.     endif
  74. --- 384,390 ----
  75.   " Programming menu
  76.   if !exists("g:ctags_command")
  77.     if has("vms")
  78. !     let g:ctags_command = "mc vim:ctags *.*"
  79.     else
  80.       let g:ctags_command = "ctags -R ."
  81.     endif
  82. *** ../vim-7.0.179/src/version.c    Tue Jan  9 14:37:10 2007
  83. --- src/version.c    Tue Jan  9 15:00:57 2007
  84. ***************
  85. *** 668,669 ****
  86. --- 668,671 ----
  87.   {   /* Add new patch number below this line */
  88. + /**/
  89. +     180,
  90.   /**/
  91.  
  92. -- 
  93. The Feynman problem solving Algorithm:
  94.     1) Write down the problem
  95.     2) Think real hard
  96.     3) Write down the answer
  97.  
  98.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  99. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  100. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  101.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  102.