Disable unused-return-value warning for delq and delete, again
* lisp/emacs-lisp/bytecomp.el (important-return-value-fns): Remove `delq` and `delete` since they resulted in false positives that nobody was interested in silencing (bug#61730).
This commit is contained in:
parent
2df7b98de3
commit
ddf8587bb5
1 changed files with 3 additions and 3 deletions
|
@ -3568,9 +3568,9 @@ lambda-expression."
|
|||
|
||||
match-data
|
||||
|
||||
;; Adding these functions causes many warnings;
|
||||
;; evaluate how many of them are false first.
|
||||
delq delete
|
||||
;; Warning about these functions causes some false positives that are
|
||||
;; laborious to eliminate; see bug#61730.
|
||||
;;delq delete
|
||||
;;nconc plist-put
|
||||
)))
|
||||
(dolist (fn important-return-value-fns)
|
||||
|
|
Loading…
Add table
Reference in a new issue