Function: thumbs-save-current-image

thumbs-save-current-image is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-save-current-image)

Documentation

Save the current image.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
(defun thumbs-save-current-image ()
  "Save the current image."
  (interactive)
  (let ((f (or thumbs-current-tmp-filename
	       thumbs-current-image-filename))
	(sa (read-from-minibuffer "Save image file as: "
				  thumbs-current-image-filename)))
    (copy-file f sa)))