Function: mh-x-image-set-download-state
mh-x-image-set-download-state is a byte-compiled function defined in
mh-xface.el.gz.
Signature
(mh-x-image-set-download-state FILE DATA)
Documentation
Setup a symbolic link from FILE to DATA.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-xface.el.gz
(defun mh-x-image-set-download-state (file data)
"Setup a symbolic link from FILE to DATA."
(if data
(make-symbolic-link (symbol-name data) file t)
(delete-file file)))