* lisp/dom.el (dom-texts): Simplify (Bug#36441).

This commit is contained in:
Xu Chunyang 2019-06-30 12:30:22 +08:00 committed by Noam Postavsky
parent 8d43315cfa
commit d07dd64fd0

View file

@ -81,17 +81,15 @@ A typical attribute is `href'."
(if (eq (dom-tag node) 'script)
""
(mapconcat
'identity
(mapcar
(lambda (elem)
(cond
((stringp elem)
elem)
((eq (dom-tag elem) 'script)
"")
(t
(dom-texts elem separator))))
(dom-children node))
(lambda (elem)
(cond
((stringp elem)
elem)
((eq (dom-tag elem) 'script)
"")
(t
(dom-texts elem separator))))
(dom-children node)
(or separator " "))))
(defun dom-child-by-tag (dom tag)