diff --git a/lisp/org.el b/lisp/org.el index a225bae00..787a09f2a 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5235,8 +5235,10 @@ Support for group tags is controlled by the option (if (or (not file) (not (file-readable-p file))) (if noerror - (message "Cannot read file \"%s\"" file) - (error "Cannot read file \"%s\"" file)) + (message "Cannot read file \"%s\" referenced in file \"%s\"" + file (buffer-file-name)) + (error "Cannot read file \"%s\" referenced in file \"%s\"" + file (buffer-file-name))) (with-temp-buffer (insert-file-contents file) (buffer-string))))