GNU bug report logs -
#25929
25.2; map-delete doesn't delete permanently 1st alist elt
Previous Next
Reported by: Tino Calancha <tino.calancha <at> gmail.com>
Date: Thu, 2 Mar 2017 07:19:01 UTC
Severity: normal
Found in version 25.2
Fixed in version 29.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #35 received at 25929 <at> debbugs.gnu.org (full text, mbox):
Stefan Monnier <monnier <at> iro.umontreal.ca> writes:
> > (macroexp-let2 nil key
> > `(progn
> > (map--dispatch ,map
> > :list (setf (alist-get ,key ,map nil t) nil)
> > :hash-table (remhash ,key ,map)
> > :array (and (>= ,key 0)
> > (<= ,key (seq-length ,map))
> > (aset ,map ,key nil)))
> > ,map)))
>
> Note that this will make it pretty much impossible to use
> cl-generic dispatch.
It will also break cases where MAP is an expression that is not a
symbol:
#+begin_src emacs-lisp
(let ((thing (cons 'tag (list (cons 0 1) (cons 2 3)))))
(map-delete (cdr thing) 0))
==> nil
(map-delete (list (cons 0 1) (cons 2 3)) 0)
==> if: Symbol's function definition is void: \(setf\ list\)
#+end_src
> A better option might be to provide a map-remove which works
> functionally (i.e. doesn't modify its argument by side-effects), and
> then change map-delete to signal an error when we ask to delete the
> first element of the list (and to stop returning the "new map" since
> it just works imperatively instead).
Why not make it just like `delete': return the map with the entry
removed, the original map might be altered - that's it.
If you want to assign the result back to a symbol/place, use setf or
callf. Any unnecessary magic just blows up the semantics.
With other words, I would fix this issue by altering the docstring
("return the result" instead of "return MAP") - or am I missing
something?
Michael.
This bug report was last modified 3 years and 27 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.