From: Richard M. Stallman Date: Thu, 11 Aug 2005 13:58:59 +0000 (+0000) Subject: (pop-global-mark): Reverse test of widen-automatically. X-Git-Tag: emacs-pretest-22.0.90~7634 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60aee8b29f2e0a10bdc7f4b09e2bff0e9ee27dff;p=emacs.git (pop-global-mark): Reverse test of widen-automatically. --- diff --git a/lisp/simple.el b/lisp/simple.el index affc4dd8ea8..9fceb68f8d2 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3240,8 +3240,8 @@ as a fallback, and won't change the buffer bounds.") (or (and (>= position (point-min)) (<= position (point-max))) (if widen-automatically - (error "Global mark position is outside accessible part of buffer") - (widen))) + (widen) + (error "Global mark position is outside accessible part of buffer"))) (goto-char position) (switch-to-buffer buffer)))