1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 20:00:46 -08:00

* src/xml.c: Fix Lisp_Object/int mixup.

This commit is contained in:
Stefan Monnier 2011-07-24 10:01:58 -04:00
parent 0b3f36df8c
commit 14486a1036

View file

@ -128,13 +128,13 @@ parse_region (Lisp_Object start, Lisp_Object end, Lisp_Object base_url, int html
Lisp_Object r = Qnil;
while (n) {
if (r != Qnil)
if (!NILP (r))
result = Fcons (r, result);
r = make_dom (n);
n = n->next;
}
if (result == Qnil)
if (NILP (result))
result = r;
else
result = Fcons (intern ("top"),