Use cl-reduce, not reduce.

This commit is contained in:
Lars Ingebrigtsen
2015-12-25 06:04:01 +01:00
parent cdaf33029d
commit fe4606f93b

View File

@@ -1588,8 +1588,8 @@ The preference is a float determined from `shr-prefer-media-type'."
(car tbodies))
(t
;; Table with multiple tbodies. Convert into a single tbody.
`(tbody nil
,@(reduce 'append (mapcar 'dom-non-text-children tbodies)))))))
`(tbody nil ,@(cl-reduce 'append
(mapcar 'dom-non-text-children tbodies)))))))
(defun shr-tag-table (dom)
(shr-ensure-paragraph)