Function: bytecomp--actually-important-return-value-p
bytecomp--actually-important-return-value-p is a byte-compiled
function defined in bytecomp.el.gz.
Signature
(bytecomp--actually-important-return-value-p FORM)
Documentation
Whether FORM is really a call with a return value that should not go unused.
This assumes the function has the important-return-value property.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(plist-get (cddr form) :in-place))) ; new-style
(defun bytecomp--actually-important-return-value-p (form)
"Whether FORM is really a call with a return value that should not go unused.
This assumes the function has the `important-return-value' property."
(cond ((eq (car form) 'sort)
(not (bytecomp--sort-call-in-place-p form)))
(t t)))