Revert "Improve message when file to include is missing"

This reverts commit 8ad7b3888f.
This commit is contained in:
Bastien Guerry 2014-01-24 12:19:25 +01:00
parent da8daf50a7
commit 92c696cf8d
1 changed files with 2 additions and 4 deletions

View File

@ -5235,10 +5235,8 @@ 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\" referenced in file \"%s\""
file (buffer-file-name))
(error "Cannot read file \"%s\" referenced in file \"%s\""
file (buffer-file-name)))
(message "Cannot read file \"%s\"" file)
(error "Cannot read file \"%s\"" file))
(with-temp-buffer
(insert-file-contents file)
(buffer-string))))