Skip to content

Instantly share code, notes, and snippets.

@jorgenschaefer
Created March 15, 2014 18:26
Show Gist options
  • Save jorgenschaefer/9571715 to your computer and use it in GitHub Desktop.
Save jorgenschaefer/9571715 to your computer and use it in GitHub Desktop.
(let* ((x 1) (y 2)) ...)
===
(setq x-old x)
(setq y-old y)
(setq x 1)
(setq y 2)
...
(setq x x-old)
(setq y y-old)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment