aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-04-15 09:30:15 -0300
committerStefan Monnier2011-04-15 09:30:15 -0300
commit8b05752a45890b043580dfa33c58957ef6ebba7d (patch)
tree5ed49efa9900f7e52dfc97b4d9ed23ad0f833287
parent71b414062b06bf30438b5833b3dce9f70c3ce98b (diff)
downloademacs-8b05752a45890b043580dfa33c58957ef6ebba7d.tar.gz
emacs-8b05752a45890b043580dfa33c58957ef6ebba7d.zip
* 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.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/emacs-lisp/bytecomp.el11
2 files changed, 12 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9b162f94a6d..90f7cad3937 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
4 (byte-save-window-excursion, byte-temp-output-buffer-setup)
5 (byte-interactive-p): Define them again, for use when inlining
6 old code.
7
12011-04-15 Juanma Barranquero <lekktu@gmail.com> 82011-04-15 Juanma Barranquero <lekktu@gmail.com>
2 9
3 * loadup.el: Use `string-to-number', not `string-to-int'. 10 * loadup.el: Use `string-to-number', not `string-to-int'.
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 7c358a3830e..4c28d816f60 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -580,7 +580,7 @@ Each element is (INDEX . VALUE)")
580(byte-defop 114 0 byte-save-current-buffer 580(byte-defop 114 0 byte-save-current-buffer
581 "To make a binding to record the current buffer") 581 "To make a binding to record the current buffer")
582(byte-defop 115 0 byte-set-mark-OBSOLETE) 582(byte-defop 115 0 byte-set-mark-OBSOLETE)
583;; (byte-defop 116 1 byte-interactive-p) ;Let's not use it any more. 583(byte-defop 116 1 byte-interactive-p-OBSOLETE)
584 584
585;; These ops are new to v19 585;; These ops are new to v19
586(byte-defop 117 0 byte-forward-char) 586(byte-defop 117 0 byte-forward-char)
@@ -616,8 +616,8 @@ otherwise pop it")
616 616
617(byte-defop 138 0 byte-save-excursion 617(byte-defop 138 0 byte-save-excursion
618 "to make a binding to record the buffer, point and mark") 618 "to make a binding to record the buffer, point and mark")
619;; (byte-defop 139 0 byte-save-window-excursion ; Obsolete: It's a macro now. 619(byte-defop 139 0 byte-save-window-excursion-OBSOLETE
620;; "to make a binding to record entire window configuration") 620 "to make a binding to record entire window configuration")
621(byte-defop 140 0 byte-save-restriction 621(byte-defop 140 0 byte-save-restriction
622 "to make a binding to record the current buffer clipping restrictions") 622 "to make a binding to record the current buffer clipping restrictions")
623(byte-defop 141 -1 byte-catch 623(byte-defop 141 -1 byte-catch
@@ -629,9 +629,8 @@ otherwise pop it")
629;; an expression for the body, and a list of clauses. 629;; an expression for the body, and a list of clauses.
630(byte-defop 143 -2 byte-condition-case) 630(byte-defop 143 -2 byte-condition-case)
631 631
632;; Obsolete: `with-output-to-temp-buffer' is a macro now. 632(byte-defop 144 0 byte-temp-output-buffer-setup-OBSOLETE)
633;; (byte-defop 144 0 byte-temp-output-buffer-setup) 633(byte-defop 145 -1 byte-temp-output-buffer-show-OBSOLETE)
634;; (byte-defop 145 -1 byte-temp-output-buffer-show)
635 634
636;; these ops are new to v19 635;; these ops are new to v19
637 636