Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.22 KB | None | 0 0
  1. (defun previous-error-dwim ()
  2.   "Customized version of `previous-error' which never causes failures and just does the right thing."
  3.   (interactive)
  4.   (condition-case nil
  5.       (previous-error)
  6.     (error (first-error))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement