aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/src/compiler/diameter_forms.hrl
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2014-03-31 10:58:29 +0200
committerAnders Svensson <[email protected]>2014-03-31 10:58:29 +0200
commit19a391b42dffeb88b8ec615ca4cc3a8b4936f1a0 (patch)
treefea4a024f727383ca5970ebd301a76ca05bbdb84 /lib/diameter/src/compiler/diameter_forms.hrl
parent12501a16ce960bfe778c319d17d0c4b7d0bb1d68 (diff)
parentd1ceb909e8867b4dfd97130270ef16201cc3e27b (diff)
downloadotp-19a391b42dffeb88b8ec615ca4cc3a8b4936f1a0.tar.gz
otp-19a391b42dffeb88b8ec615ca4cc3a8b4936f1a0.tar.bz2
otp-19a391b42dffeb88b8ec615ca4cc3a8b4936f1a0.zip
Merge branch 'anders/diameter/unicode/OTP-11686'
* anders/diameter/unicode/OTP-11686: Use fun encoding to erl_parse:abstract/2 Adapt dictionary compilation to new default encoding
Diffstat (limited to 'lib/diameter/src/compiler/diameter_forms.hrl')
-rw-r--r--lib/diameter/src/compiler/diameter_forms.hrl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/diameter/src/compiler/diameter_forms.hrl b/lib/diameter/src/compiler/diameter_forms.hrl
index 9b14c1715a..dd03401b9e 100644
--- a/lib/diameter/src/compiler/diameter_forms.hrl
+++ b/lib/diameter/src/compiler/diameter_forms.hrl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2010-2013. All Rights Reserved.
+%% Copyright Ericsson AB 2010-2014. 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
@@ -57,4 +57,6 @@
-define(FIELDS(Fs), [{?record_field, ?ATOM(F), V} || {F,V} <- Fs]).
%% Literal term.
--define(TERM(T), erl_parse:abstract(T, ?LINE)).
+-define(TERM(T), erl_parse:abstract(T, [
+ {line, ?LINE},
+ {encoding, fun diameter_codegen:is_printable_ascii/1}])).