Skip to content

Instantly share code, notes, and snippets.

@jorgenschaefer
Created October 22, 2012 20:47
Show Gist options
  • Save jorgenschaefer/3934106 to your computer and use it in GitHub Desktop.
Save jorgenschaefer/3934106 to your computer and use it in GitHub Desktop.
(defun hash-items (tab)
(let ((r nil))
(maphash (lambda (k v)
(setq r (cons (cons k v) r)))
tab)
r))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment