Function: hfy-link-style-string
hfy-link-style-string is a byte-compiled function defined in
htmlfontify.el.gz.
Signature
(hfy-link-style-string STYLE-STRING)
Documentation
Replace the end of a CSS style declaration STYLE-STRING with the contents
of the variable hfy-src-doc-link-style, removing text matching the regex
hfy-src-doc-link-unstyle first, if necessary.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-link-style-string (style-string)
"Replace the end of a CSS style declaration STYLE-STRING with the contents
of the variable `hfy-src-doc-link-style', removing text matching the regex
`hfy-src-doc-link-unstyle' first, if necessary."
;;(message "hfy-color-vals");;DBUG
(if (string-match hfy-src-doc-link-unstyle style-string)
(setq style-string (replace-match "" 'fixed-case 'literal style-string)))
(if (and (not (string-match hfy-src-doc-link-style style-string))
(string-match "} *$" style-string))
(concat (replace-match hfy-src-doc-link-style
'fixed-case
'literal
style-string) " }")
style-string))