Function: newsticker--unxml-attribute

newsticker--unxml-attribute is a byte-compiled function defined in newst-backend.el.gz.

Signature

(newsticker--unxml-attribute ATTRIBUTE)

Documentation

Actually restore xml-string of an ATTRIBUTE of an xml node.

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-backend.el.gz
(defun newsticker--unxml-attribute (attribute)
  "Actually restore xml-string of an ATTRIBUTE of an xml node."
  (let ((name (symbol-name (car attribute)))
        (value (cdr attribute)))
    (concat name "=\"" value "\"")))