# HG changeset patch # User Richard M. Stallman # Date 1123768739 0 # Node ID 08a222d725668fedc2cb05910aeeb647c1fd9e5b # Parent eef3e25f6aed230469baf12212bf4e149cb82e52 (pop-global-mark): Reverse test of widen-automatically. diff -r eef3e25f6aed -r 08a222d72566 lisp/simple.el --- a/lisp/simple.el Thu Aug 11 13:58:12 2005 +0000 +++ b/lisp/simple.el Thu Aug 11 13:58:59 2005 +0000 @@ -3240,8 +3240,8 @@ (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)))