pxml and spaces and newlines

[email protected] Thu, 30 May 2002 17:12:58 +0200
Newsgroups gmane.lisp.open-source.franz
Message-ID <[email protected]>
Hi,

I am playing with pxml and noticed that the result of parsing the string

"<REGEL>
  <TITLE>Het_proces_verbaal</TITLE>
  <ID>170</ID>
</REGEL>"

is

((REGEL "
  " (TITLE "Het_proces_verbaal") "
  " (ID "170") "
"))

I did not expect the #\newline chars and spaces (or any other sequence of
chars that pass #'xml-space-p) to be transformed to strings, instead I did
expect

((REGEL (TITLE "Het_proces_verbaal") (ID "170")))


My question is, is the behavior of the code correct, or should it return the
list that i expect?

Regards,

Andre