summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2019-07-06 16:35:52 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-07-06 16:35:52 +0200
commit01aac6c1fcf8cf8d3f2463e8182f986abf768e29 (patch)
tree918d97adc294fc169c98ecf0f729a9fd776b02b1
parentd7ee13331c1a4d47939132b896608a22125b9a26 (diff)
downloademacs-01aac6c1fcf8cf8d3f2463e8182f986abf768e29.tar.gz
Improve an error message in bookmark.el
* lisp/bookmark.el (bookmark-alist-from-buffer): Improve error message (bug#36391).
-rw-r--r--lisp/bookmark.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 4f908313ccf..2640b2157ab 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -650,7 +650,9 @@ affect point."
(forward-char -1)
(read (current-buffer)))
;; Else no hope of getting information here.
- (error "Not bookmark format")))))
+ (if buffer-file-name
+ (error "File not in bookmark format: %s" buffer-file-name)
+ (error "Buffer not in bookmark format: %s" (buffer-name)))))))
(defun bookmark-upgrade-version-0-alist (old-list)