home *** CD-ROM | disk | FTP | other *** search
-
- DEFUN ("make-symbolic-link"...) in fileio.c reads:
- ...
- if (errno == EEXIST)
- {
- unlink ((char *) XSTRING (filename)->data);
- if (0 <= symlink ((char *) XSTRING (filename)->data,
- (char *) XSTRING (newname)->data))
- return Qnil;
- }
- ...
-
- I believe that the wrong file is "unlink"ed here,
- it should be:
-
- unlink ((char *) XSTRING (newname)->data);
-
-
- (Just lost some files because of this "feature"....)
-
- Regards, Frank.
-
-