]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve error message text of "C-x C-SPC"
authorEli Zaretskii <eliz@gnu.org>
Sun, 6 Dec 2020 15:43:18 +0000 (17:43 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sun, 6 Dec 2020 15:43:18 +0000 (17:43 +0200)
* lisp/simple.el (pop-global-mark): Mention the buffer name in the
error message.  Suggested by T.V Raman <raman@google.com>.

lisp/simple.el

index d73bc6b0682fea2071f9115f4dbaacc76b4180c7..3c4f756230875233bea593a7f4b771b75f98fec6 100644 (file)
@@ -6426,7 +6426,8 @@ for it.")
             (<= position (point-max)))
        (if widen-automatically
            (widen)
-         (error "Global mark position is outside accessible part of buffer")))
+         (error "Global mark position is outside accessible part of buffer %s"
+                 (buffer-name buffer))))
     (goto-char position)
     (switch-to-buffer buffer)))
 \f