Function: hfy-box-to-border-assoc

hfy-box-to-border-assoc is a byte-compiled function defined in htmlfontify.el.gz.

Signature

(hfy-box-to-border-assoc SPEC)

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-box-to-border-assoc (spec)
  (if spec
      (let ((tag (car  spec))
            (val (cadr spec)))
        (cons (cl-case tag
                (:color (cons "color" val))
                (:width (cons "width"  val))
                (:style (cons "style"  val)))
              (hfy-box-to-border-assoc (cddr spec))))))