Last active
May 15, 2018 08:27
-
-
Save rcy/94be894e2b296633fb85c0847d93fb26 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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