+2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * subr.el (internal-temp-output-buffer-show): Rename from
+ temp-output-buffer-show, since previously compiled files expect this name.
+
2012-10-23 Glenn Morris <rgm@gnu.org>
* image.el (image-type-from-file-name): If multiple types match,
(unwind-protect (progn ,@body)
(set-window-configuration ,c)))))
-(defun temp-output-buffer-show (buffer)
+(defun internal-temp-output-buffer-show (buffer)
"Internal function for `with-output-to-temp-buffer'."
(with-current-buffer buffer
(set-buffer-modified-p nil)
(run-hooks 'temp-buffer-setup-hook)))))
(standard-output ,buf))
(prog1 (progn ,@body)
- (temp-output-buffer-show ,buf)))))
+ (internal-temp-output-buffer-show ,buf)))))
(defmacro with-temp-file (file &rest body)
"Create a new buffer, evaluate BODY there, and write the buffer to FILE.