|
@@ -5145,10 +5145,9 @@ Support for group tags is controlled by the option
|
|
|
"Return the contents of FILE, as a string."
|
|
|
(if (or (not file)
|
|
|
(not (file-readable-p file)))
|
|
|
- (if (not noerror)
|
|
|
- (error "Cannot read file \"%s\"" file)
|
|
|
- (message "Cannot read file \"%s\"" file)
|
|
|
- (sit-for 3))
|
|
|
+ (if noerror
|
|
|
+ (message "Cannot read file \"%s\"" file)
|
|
|
+ (error "Cannot read file \"%s\"" file))
|
|
|
(with-temp-buffer
|
|
|
(insert-file-contents file)
|
|
|
(buffer-string))))
|