Merge pull request #3258 from no382001/fix_load_xml/3

load_xml was returning a single term instead of a list of nodes
This commit is contained in:
Mark Thom
2026-03-14 22:46:03 -07:00
committed by GitHub
3 changed files with 20 additions and 1 deletions

5
tests-pl/issue3256.pl Normal file
View File

@@ -0,0 +1,5 @@
:- use_module(library(sgml)).
test :- load_xml("<foo><bar>hello</bar></foo>", Es, []), write(Es).
:- initialization(test).