Function: image--update-properties

image--update-properties is a byte-compiled function defined in image-mode.el.gz.

Signature

(image--update-properties IMAGE PROPERTIES)

Documentation

Update IMAGE with the new PROPERTIES set.

Source Code

;; Defined in /usr/src/emacs/lisp/image-mode.el.gz
(defun image--update-properties (image properties)
  "Update IMAGE with the new PROPERTIES set."
  (let (prop)
    (while (setq prop (pop properties))
      (plist-put (cdr image) prop (pop properties)))
    image))