1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

- xpath.c: trying to get 52979 solved

- tree.c result/ result/noent/: trying to get 52712 solved, this
  also made me clean up the fact that XML output in general should
  not add formating blanks by default, this changed the output of
  a few tests
Daniel
This commit is contained in:
Daniel Veillard
2001-04-10 16:38:06 +00:00
parent 73639a73c5
commit 1731d6ae0a
17 changed files with 34 additions and 67 deletions

View File

@ -164,14 +164,11 @@ xmlXPathInit(void) {
if (initialized) return;
xmlXPathNAN = 0;
xmlXPathNAN /= 0;
xmlXPathNAN = 0.0 / 0.0;
xmlXPathPINF = 1;
xmlXPathPINF /= 0;
xmlXPathPINF = 1 / 0.0;
xmlXPathNINF = -1;
xmlXPathNINF /= 0;
xmlXPathNINF = -1 / 0.0;
initialized = 1;
}