]> git.eshelyaron.com Git - emacs.git/commitdiff
(pop-global-mark): Reverse test of widen-automatically.
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Aug 2005 13:58:59 +0000 (13:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Aug 2005 13:58:59 +0000 (13:58 +0000)
lisp/simple.el

index affc4dd8ea8f9b2acce764ff44ef04af6a8ab23c..9fceb68f8d216653c331416a9d26394ef0de3e49 100644 (file)
@@ -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)))
 \f