Function: image--image-without-parameters
image--image-without-parameters is a byte-compiled function defined in
image.el.gz.
Signature
(image--image-without-parameters IMAGE)
Source Code
;; Defined in /usr/src/emacs/lisp/image.el.gz
(defun image--image-without-parameters (image)
(cons (pop image)
(let ((new nil))
(while image
(let ((key (pop image))
(val (pop image)))
(unless (memq key '(:scale :width :height :max-width :max-height))
(setq new (nconc new (list key val))))))
new)))