From 60aee8b29f2e0a10bdc7f4b09e2bff0e9ee27dff Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 11 Aug 2005 13:58:59 +0000 Subject: (pop-global-mark): Reverse test of widen-automatically. --- lisp/simple.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp') diff --git a/lisp/simple.el b/lisp/simple.el index affc4dd8ea..9fceb68f8d 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))) -- cgit v1.2.3