Skip to content

Instantly share code, notes, and snippets.

@naota
Created October 3, 2010 00:23
Show Gist options
  • Save naota/608140 to your computer and use it in GitHub Desktop.
Save naota/608140 to your computer and use it in GitHub Desktop.
(progn
(defsubst spooky-action-at-a-distance ()
(let ((a (concat "a" "bc")))
(store-substring a 0 "123")))
(defun foo ()
(spooky-action-at-a-distance)
(concat "ab" "c"))
(byte-compile 'foo)
(foo))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment