summaryrefslogtreecommitdiff
path: root/src/xml.erl
diff options
context:
space:
mode:
authorMickaël Rémond <mickael.remond@process-one.net>2007-07-31 14:47:52 +0000
committerMickaël Rémond <mickael.remond@process-one.net>2007-07-31 14:47:52 +0000
commit442dd0667b1af3e2791fb04a31222b3a028e411b (patch)
tree70f17830d7f961c4cb675a6a3a40715c120d8499 /src/xml.erl
parent* Updating SVN HTML documentation. (diff)
* src/xml.erl: Removing debug printout.
SVN Revision: 851
Diffstat (limited to 'src/xml.erl')
-rw-r--r--src/xml.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/xml.erl b/src/xml.erl
index aca0735d..fd327ba2 100644
--- a/src/xml.erl
+++ b/src/xml.erl
@@ -56,7 +56,6 @@ attr_to_list({Name, Value}) ->
[$\s, crypt(Name), $=, $', crypt(Value), $'].
crypt(S) when is_list(S) ->
- io:format("MREMOND crypt~n",[]),
[case C of
$& -> "&amp;";
$< -> "&lt;";
@@ -70,7 +69,6 @@ crypt(S) when is_binary(S) ->
%% Make a cdata_binary depending on what characters it contains
make_text_node(CData) ->
- io:format("MREMOND CDATA~n",[]),
case cdata_need_escape(CData) of
cdata ->
CDATA1 = <<"<![CDATA[">>,