]> git.eshelyaron.com Git - emacs.git/commit
Add the function declaration and property `important-return-value`
authorMattias Engdegård <mattiase@acm.org>
Mon, 1 May 2023 13:55:32 +0000 (15:55 +0200)
committerMattias Engdegård <mattiase@acm.org>
Mon, 1 May 2023 15:11:50 +0000 (17:11 +0200)
commit7acb3f1c060872b1802e7548d991ca8a9f0fef01
tree3f40fc40d805a84daac37748ade991485de284c8
parentaa56253407eaa62fdfbc037d5b5a6b3c41e6796e
Add the function declaration and property `important-return-value`

Now the declaration

 (declare (important-return-value t))

can be used to have the byte-compiler warn when the return value from
a call is discarded (bug#61730).

* lisp/emacs-lisp/bytecomp.el (byte-compile-form)
(important-return-value-fns): Use the function property
`important-return-value` instead of looking through a static list.
* lisp/emacs-lisp/byte-run.el (byte-run--set-important-return-value)
(defun-declarations-alist): New function declaration, setting the
property of the same name.
* lisp/emacs-lisp/cl-macs.el:
* lisp/subr.el (assoc-default): Set the property.
* doc/lispref/functions.texi (Declare Form):
* doc/lispref/symbols.texi (Standard Properties): Document.
* etc/NEWS: Announce.
doc/lispref/functions.texi
doc/lispref/symbols.texi
etc/NEWS
lisp/emacs-lisp/byte-run.el
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/cl-macs.el
lisp/subr.el