Is there a way in emacs-lisp to return cells to the free list once I do not use them any more? This would be useful in code where I build huge lists temporarily and can free them without waiting for garbage collector to do it.
This exists in other lisps but C-h a free
did not return anything, and the Manual page about garbage collection does not mention anything like a free-cell
function either.