changeset 64911:08a222d72566

(pop-global-mark): Reverse test of widen-automatically.
author Richard M. Stallman <rms@gnu.org>
date Thu, 11 Aug 2005 13:58:59 +0000
parents eef3e25f6aed
children cf610b797357
files lisp/simple.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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)))