Skip to content

Instantly share code, notes, and snippets.

@rcy
Last active May 15, 2018 08:27
Show Gist options
  • Save rcy/94be894e2b296633fb85c0847d93fb26 to your computer and use it in GitHub Desktop.
Save rcy/94be894e2b296633fb85c0847d93fb26 to your computer and use it in GitHub Desktop.
(progn
(condition-case nil
(scroll-down 1)
(error nil))
(message "got here"))
;; simpler version of above
(progn
(ignore-errors (scroll-down 1))
(message "got here"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment