mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 20:30:32 -08:00
(Ffile_symlink_p): If result starts with a `/'
and contains a `:', prepend `/:'.
This commit is contained in:
parent
719eaeb1b6
commit
69ac18912e
1 changed files with 2 additions and 0 deletions
|
|
@ -3022,6 +3022,8 @@ Otherwise returns nil.")
|
|||
return Qnil;
|
||||
}
|
||||
val = make_string (buf, valsize);
|
||||
if (buf[0] == '/' && index (buf, ':'))
|
||||
val = concat2 (build_string ("/:"), val);
|
||||
xfree (buf);
|
||||
val = DECODE_FILE (val);
|
||||
return val;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue