diff options
author | Björn Gustavsson <[email protected]> | 2014-05-08 10:55:24 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-05-08 10:55:24 +0200 |
commit | 1bcbc42e3d20fa374d361c9eab399e2b53cf4533 (patch) | |
tree | 08636051bdb128637fd735cebba643c1e002dc2a /lib/stdlib/src | |
parent | f938b3fe49690ac2ef14d0a6268233e223e618f4 (diff) | |
parent | 6bf1835ac2d6f4db6c266b2df6167f8a10e95c92 (diff) | |
download | otp-1bcbc42e3d20fa374d361c9eab399e2b53cf4533.tar.gz otp-1bcbc42e3d20fa374d361c9eab399e2b53cf4533.tar.bz2 otp-1bcbc42e3d20fa374d361c9eab399e2b53cf4533.zip |
Merge branch 'maint'
* maint:
Document that spawn_opt/5 does not support the 'monitor' option
filelib:wildcard() should show broken symlinks
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/filelib.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/filelib.erl b/lib/stdlib/src/filelib.erl index a266daa084..c0921e4cf1 100644 --- a/lib/stdlib/src/filelib.erl +++ b/lib/stdlib/src/filelib.erl @@ -488,7 +488,7 @@ badpattern(Reason) -> error({badpattern,Reason}). eval_read_file_info(File, file) -> - file:read_file_info(File); + file:read_link_info(File); eval_read_file_info(File, erl_prim_loader) -> case erl_prim_loader:read_file_info(File) of error -> {error, erl_prim_loader}; |