diff lisp/simple.el @ 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 41bb365f41c4
children 942d4ce7c22d
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)))