moved opts record def from jsx_common.hrl to a public jsx.hrl header file

actually included the new header, oops
This commit is contained in:
alisdair sullivan 2010-05-18 12:48:05 -07:00
parent 5c36ec18d7
commit 7468313ffc
3 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,3 @@
-record(opts, {
comments = false,
escaped_unicode = ascii,
naked_values = false
}).
%% whitespace
-define(space, 16#20).
-define(tab, 16#09).

View file

@ -3,6 +3,7 @@
-export([start/4]).
-include("jsx_common.hrl").
-include("../include/jsx.hrl").
callback(eof, Callbacks) ->
lists:reverse(Callbacks);