diff options
author | Hans Bolinder <[email protected]> | 2012-08-23 08:51:56 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-08-23 08:51:56 +0200 |
commit | b7fd52d0d2b6bb34bfbd0a141029f22bf58504b3 (patch) | |
tree | 0ac3ce38f681184b8d8f3a459bcb7b6d80e9f677 /lib/tools/src/xref_utils.erl | |
parent | 6b3bc65431e9b96a3fd4727035e495dd62e66a70 (diff) | |
parent | e479ebeb58beaa8261fa90e54681dc30e5ee3085 (diff) | |
download | otp-b7fd52d0d2b6bb34bfbd0a141029f22bf58504b3.tar.gz otp-b7fd52d0d2b6bb34bfbd0a141029f22bf58504b3.tar.bz2 otp-b7fd52d0d2b6bb34bfbd0a141029f22bf58504b3.zip |
Merge branch 'maint'
* maint:
Allow non-ASCII characters in Xref filanmes
Diffstat (limited to 'lib/tools/src/xref_utils.erl')
-rw-r--r-- | lib/tools/src/xref_utils.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tools/src/xref_utils.erl b/lib/tools/src/xref_utils.erl index 9d4a175d88..680563e9df 100644 --- a/lib/tools/src/xref_utils.erl +++ b/lib/tools/src/xref_utils.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2000-2010. All Rights Reserved. +%% Copyright Ericsson AB 2000-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -141,7 +141,7 @@ is_string([], _) -> is_string(Term, C) -> is_string1(Term, C). -is_string1([H | T], C) when H > C, H < 127 -> +is_string1([H | T], C) when H > C -> is_string1(T, C); is_string1([], _) -> true; |