nil is returned if the attribute was not found.
See also `xml-get-attribute'."
- (if (xml-node-attributes node)
- (let ((value (assoc attribute (xml-node-attributes node))))
- (if value
- (cdr value)
- nil))
- nil))
+ (when (xml-node-attributes node)
+ (let ((value (assoc attribute (xml-node-attributes node))))
+ (when value
+ (cdr value)))))
(defsubst xml-get-attribute (node attribute)
"Get from NODE the value of ATTRIBUTE.
attr-list)
attr-list)
-
(defun xml-intern-attrlist (attr-list)
"Convert attribute names to symbols for backward compatibility."
(mapcar (lambda (attr)
(let* ((node-name (match-string 1))
(attr-list (xml-parse-attlist))
(children (if (consp xml-ns) ;; take care of namespace parsing
- (progn
+ (progn
(setq xml-ns (xml-ns-parse-ns-attrs
attr-list xml-ns))
- (list (xml-ns-expand-attr
+ (list (xml-ns-expand-attr
attr-list xml-ns)
- (xml-ns-expand-el
+ (xml-ns-expand-el
node-name xml-ns)))
(list (xml-intern-attrlist attr-list)
(intern node-name))))