mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit 6025bd69549bf62c7d9389f4860530b87b5935fe Author: Matthew L. Fidler <[email protected]> Date: Mon Jun 30 09:48:07 2014 -0500 Remove condition-case handler --- ergoemacs-functions.el | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/ergoemacs-functions.el b/ergoemacs-functions.el index d4125ce..e60e46f 100644 --- a/ergoemacs-functions.el +++ b/ergoemacs-functions.el @@ -766,9 +766,7 @@ the prefix arguments of `end-of-buffer', (when ergoemacs-end-of-comment-line (save-excursion ;; See http://www.emacswiki.org/emacs/EndOfLineNoComments - (let ((cs (condition-case err - (comment-search-forward (point-at-eol) t) - (error nil)))) + (let ((cs (ignore-errors (comment-search-forward (point-at-eol) t)))) (when cs (goto-char cs) (skip-syntax-backward " " (point-at-bol))
