diff options
author | Hans Bolinder <[email protected]> | 2013-02-15 13:23:27 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-02-15 13:23:27 +0100 |
commit | f7095c4c3ac256f2d587475d11a1cd09f9454a76 (patch) | |
tree | bcd95ee1d2e39fad2db67b1912e23c22fa3aade5 /lib/syntax_tools/src/igor.erl | |
parent | 0d77170a3f0e537d103d83f28ae09977d6e95fb8 (diff) | |
parent | 22e3a1c772041cbb3a137a87436bf8b304c8499f (diff) | |
download | otp-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/syntax_tools/src/igor.erl')
-rw-r--r-- | lib/syntax_tools/src/igor.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/syntax_tools/src/igor.erl b/lib/syntax_tools/src/igor.erl index 8abc3f41cb..567bec00cb 100644 --- a/lib/syntax_tools/src/igor.erl +++ b/lib/syntax_tools/src/igor.erl @@ -2956,7 +2956,7 @@ timestamp() -> "~2.2.0w:~2.2.0w:~2.2.0w.", [Yr, Mth, Dy, Hr, Mt, Sc])). -filename([C | T]) when is_integer(C), C > 0, C =< 255 -> +filename([C | T]) when is_integer(C), C > 0 -> [C | filename(T)]; filename([H|T]) -> filename(H) ++ filename(T); |