mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
Remove side-effect-free markup for assoc-default
* lisp/subr.el (assoc-default): assoc-default isn't side-effect-free, because it takes a :test parameter that can do anything (bug#37943).
This commit is contained in:
parent
1926fe6527
commit
99fe2a2643
1 changed files with 0 additions and 1 deletions
|
|
@ -766,7 +766,6 @@ If that is non-nil, the element matches; then `assoc-default'
|
|||
|
||||
If no element matches, the value is nil.
|
||||
If TEST is omitted or nil, `equal' is used."
|
||||
(declare (side-effect-free t))
|
||||
(let (found (tail alist) value)
|
||||
(while (and tail (not found))
|
||||
(let ((elt (car tail)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue