Patch 7.4.1007
Problem: When a symbolic link points to a file in the root directory, the
swapfile is not correct.
Solution: Do not try getting the full name of a file in the root directory.
(Milly, closes #501)
Files: src/os_unix.c
*** ../vim-7.4.1006/src/os_unix.c 2015-11-19 19:55:12.340839491 +0100
--- src/os_unix.c 2015-12-31 18:20:35.966080162 +0100
***************
*** 2507,2514 ****
fname = posix_fname;
#endif
! /* expand it if forced or not an absolute path */
! if (force || !mch_isFullName(fname))
{
/*
* If the file name has a path, change to that directory for a moment,
--- 2507,2516 ----
fname = posix_fname;
#endif
! /* Expand it if forced or not an absolute path.
! * Do not do it for "/file", the result is always "/". */
! if ((force || !mch_isFullName(fname))
! && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
{
/*
* If the file name has a path, change to that directory for a moment,
***************
*** 2517,2527 ****
*/
#ifdef OS2
only_drive = 0;
! if (((p = vim_strrchr(fname, '/')) != NULL)
|| ((p = vim_strrchr(fname, '\\')) != NULL)
|| (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
#else
! if ((p = vim_strrchr(fname, '/')) != NULL)
#endif
{
#ifdef HAVE_FCHDIR
--- 2519,2529 ----
*/
#ifdef OS2
only_drive = 0;
! if (p != NULL
|| ((p = vim_strrchr(fname, '\\')) != NULL)
|| (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
#else
! if (p != NULL)
#endif
{
#ifdef HAVE_FCHDIR
*** ../vim-7.4.1006/src/version.c 2015-12-31 16:21:41.555246139 +0100
--- src/version.c 2015-12-31 18:24:10.355765967 +0100
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 1007,
/**/
--
MARTHA'S WAY: Don't throw out all that leftover wine. Freeze into ice cubes
for future use in casseroles and sauces.
MY WAY: What leftover wine?
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.