Function: ezimage-image-over-string
ezimage-image-over-string is a byte-compiled function defined in
ezimage.el.gz.
Signature
(ezimage-image-over-string STRING &optional ALIST)
Documentation
Insert over the text in STRING an image found in ALIST.
Return STRING with properties applied.
Source Code
;; Defined in /usr/src/emacs/lisp/ezimage.el.gz
(defun ezimage-image-over-string (string &optional alist)
"Insert over the text in STRING an image found in ALIST.
Return STRING with properties applied."
(if ezimage-use-images
(let ((a (assoc string alist)))
(if (and a (symbol-value (cdr a)))
(ezimage-insert-over-text (symbol-value (cdr a))
0 (length string)
string)
string))
string))