emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103921: * lisp/emacs-lisp/bytecomp.e


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103921: * lisp/emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
Date: Fri, 15 Apr 2011 09:30:15 -0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 103921
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2011-04-15 09:30:15 -0300
message:
  * lisp/emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
  (byte-save-window-excursion, byte-temp-output-buffer-setup)
  (byte-interactive-p): Define them again, for use when inlining old code.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/bytecomp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-04-15 03:15:22 +0000
+++ b/lisp/ChangeLog    2011-04-15 12:30:15 +0000
@@ -1,3 +1,10 @@
+2011-04-15  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
+       (byte-save-window-excursion, byte-temp-output-buffer-setup)
+       (byte-interactive-p): Define them again, for use when inlining
+       old code.
+
 2011-04-15  Juanma Barranquero  <address@hidden>
 
        * loadup.el: Use `string-to-number', not `string-to-int'.

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2011-04-01 17:19:52 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2011-04-15 12:30:15 +0000
@@ -580,7 +580,7 @@
 (byte-defop 114  0 byte-save-current-buffer
   "To make a binding to record the current buffer")
 (byte-defop 115  0 byte-set-mark-OBSOLETE)
-;; (byte-defop 116  1 byte-interactive-p) ;Let's not use it any more.
+(byte-defop 116  1 byte-interactive-p-OBSOLETE)
 
 ;; These ops are new to v19
 (byte-defop 117  0 byte-forward-char)
@@ -616,8 +616,8 @@
 
 (byte-defop 138  0 byte-save-excursion
   "to make a binding to record the buffer, point and mark")
-;; (byte-defop 139  0 byte-save-window-excursion ; Obsolete: It's a macro now.
-;;   "to make a binding to record entire window configuration")
+(byte-defop 139  0 byte-save-window-excursion-OBSOLETE
+  "to make a binding to record entire window configuration")
 (byte-defop 140  0 byte-save-restriction
   "to make a binding to record the current buffer clipping restrictions")
 (byte-defop 141 -1 byte-catch
@@ -629,9 +629,8 @@
 ;; an expression for the body, and a list of clauses.
 (byte-defop 143 -2 byte-condition-case)
 
-;; Obsolete: `with-output-to-temp-buffer' is a macro now.
-;; (byte-defop 144  0 byte-temp-output-buffer-setup)
-;; (byte-defop 145 -1 byte-temp-output-buffer-show)
+(byte-defop 144  0 byte-temp-output-buffer-setup-OBSOLETE)
+(byte-defop 145 -1 byte-temp-output-buffer-show-OBSOLETE)
 
 ;; these ops are new to v19
 


reply via email to

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