aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tools/src/xref_utils.erl
diff options
context:
space:
mode:
authorFredrik Gustafsson <[email protected]>2012-08-23 10:57:50 +0200
committerFredrik Gustafsson <[email protected]>2012-08-23 10:57:50 +0200
commitd3ba4c96e621d4e68e38926f051aadd2b0869dc9 (patch)
treed4fc0f35f41d9c9e1674af29510e797a118220fc /lib/tools/src/xref_utils.erl
parent064b42237d891d5fdcb6c1a351980b8291437618 (diff)
parente7720fe2b2a1f09af70e74b54442f72f84609a31 (diff)
downloadotp-d3ba4c96e621d4e68e38926f051aadd2b0869dc9.tar.gz
otp-d3ba4c96e621d4e68e38926f051aadd2b0869dc9.tar.bz2
otp-d3ba4c96e621d4e68e38926f051aadd2b0869dc9.zip
Merge branch 'maint' of super:otp into maint
* 'maint' of super:otp: Revert "Merge branch 'nox/compile-column-numbers' into maint" compiler: Warn if the size of a binary segment is invalid Allow non-ASCII characters in Xref filanmes Add powerpc dso xcomp file
Diffstat (limited to 'lib/tools/src/xref_utils.erl')
-rw-r--r--lib/tools/src/xref_utils.erl4
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;