aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-08-11 13:58:59 +0000
committerRichard M. Stallman <[email protected]>2005-08-11 13:58:59 +0000
commit60aee8b29f2e0a10bdc7f4b09e2bff0e9ee27dff (patch)
treed9be96b2a5accdc13affe89715ce0d5a16a43755 /lisp
parent6e6fc3fd4b8195264bb64a70834d354cbbed98a0 (diff)
(pop-global-mark): Reverse test of widen-automatically.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el4
1 files changed, 2 insertions, 2 deletions
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)))