Tassilo Horn [2014-04-17 13:39:41 +02:00] wrote: > So I'm voting for adding a function `assoc-delete-all' which is just > like `assq-delete-all' except that it does the comparison with `equal' > instead of `eq'. Then the above becomes just That would add symmetry but how about cl-delete(-if(-not))? (setq Tex-Command-List (cl-delete "Biber" TeX-command-list :key 'car :test 'equal)) > For symmetry, I'd also add `rassoc-delete-all' to the existing > `rassq-delete-all'. I prefer those generic higher-order Common Lisp versions which already have all the features.