Skip to content

Instantly share code, notes, and snippets.

@KOMON
Created December 16, 2014 07:20
Show Gist options
  • Save KOMON/266dadaf7f07f6b0c031 to your computer and use it in GitHub Desktop.
Save KOMON/266dadaf7f07f6b0c031 to your computer and use it in GitHub Desktop.
emacs lisp return nil
(let ((x (foo))
(when x
(- x 3)))
or
(when (foo)
(- (foo) 3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment