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:
parent
0b3f36df8c
commit
14486a1036
1 changed files with 2 additions and 2 deletions
|
|
@ -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"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue