aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/epp.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2013-02-15 13:23:27 +0100
committerHans Bolinder <[email protected]>2013-02-15 13:23:27 +0100
commitf7095c4c3ac256f2d587475d11a1cd09f9454a76 (patch)
treebcd95ee1d2e39fad2db67b1912e23c22fa3aade5 /lib/stdlib/src/epp.erl
parent0d77170a3f0e537d103d83f28ae09977d6e95fb8 (diff)
parent22e3a1c772041cbb3a137a87436bf8b304c8499f (diff)
downloadotp-f7095c4c3ac256f2d587475d11a1cd09f9454a76.tar.gz
otp-f7095c4c3ac256f2d587475d11a1cd09f9454a76.tar.bz2
otp-f7095c4c3ac256f2d587475d11a1cd09f9454a76.zip
Merge branch 'hb/stdlib/unicode_corrections/OTP-10820'
* hb/stdlib/unicode_corrections/OTP-10820: [stdlib] Add documentation of ~tp [stdlib] Correct handling of Unicode filenames
Diffstat (limited to 'lib/stdlib/src/epp.erl')
-rw-r--r--lib/stdlib/src/epp.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/epp.erl b/lib/stdlib/src/epp.erl
index 1bb3b95ae2..0a1caa7178 100644
--- a/lib/stdlib/src/epp.erl
+++ b/lib/stdlib/src/epp.erl
@@ -614,7 +614,7 @@ enter_file_reply(From, Name, Location, AtLocation) ->
%% Flatten filename to a string. Must be a valid filename.
-file_name([C | T]) when is_integer(C), C > 0, C =< 255 ->
+file_name([C | T]) when is_integer(C), C > 0 ->
[C | file_name(T)];
file_name([H|T]) ->
file_name(H) ++ file_name(T);