* src/xml.c: Fix Lisp_Object/int mixup.
This commit is contained in:
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user