emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110622: * lisp/subr.el (internal-tem


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110622: * lisp/subr.el (internal-temp-output-buffer-show): Rename from
Date: Mon, 22 Oct 2012 21:18:47 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110622
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2012-10-22 21:18:47 -0400
message:
  * lisp/subr.el (internal-temp-output-buffer-show): Rename from
  temp-output-buffer-show, since previously compiled files expect this name.
modified:
  lisp/ChangeLog
  lisp/subr.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-23 00:46:11 +0000
+++ b/lisp/ChangeLog    2012-10-23 01:18:47 +0000
@@ -1,3 +1,8 @@
+2012-10-23  Stefan Monnier  <address@hidden>
+
+       * 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  <address@hidden>
 
        * image.el (image-type-from-file-name): If multiple types match,

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2012-10-07 19:48:02 +0000
+++ b/lisp/subr.el      2012-10-23 01:18:47 +0000
@@ -3151,7 +3151,7 @@
        (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)
@@ -3235,7 +3235,7 @@
                    (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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]