diff options
| author | Richard M. Stallman | 1997-06-15 23:05:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-15 23:05:19 +0000 |
| commit | 78943c8ae6da85e0a234b13745676aa5cace0993 (patch) | |
| tree | fcbe66e46bcc9f8bba3b70f0ec8e1257d865b7e8 | |
| parent | 4bc504c88ca3379b76a9df10319693b2274d9dc3 (diff) | |
| download | emacs-78943c8ae6da85e0a234b13745676aa5cace0993.tar.gz emacs-78943c8ae6da85e0a234b13745676aa5cace0993.zip | |
(byte-save-current-buffer): Change to code 114 (0162).
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 542b7e201ab..6d18fe610d3 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | 10 | ||
| 11 | ;;; This version incorporates changes up to version 2.10 of the | 11 | ;;; This version incorporates changes up to version 2.10 of the |
| 12 | ;;; Zawinski-Furuseth compiler. | 12 | ;;; Zawinski-Furuseth compiler. |
| 13 | (defconst byte-compile-version "$Revision: 2.27 $") | 13 | (defconst byte-compile-version "$Revision: 2.28 $") |
| 14 | 14 | ||
| 15 | ;; This file is part of GNU Emacs. | 15 | ;; This file is part of GNU Emacs. |
| 16 | 16 | ||
| @@ -489,8 +489,6 @@ Each element is (INDEX . VALUE)") | |||
| 489 | (byte-defop 94 -1 byte-min) | 489 | (byte-defop 94 -1 byte-min) |
| 490 | (byte-defop 95 -1 byte-mult) ; v19 only | 490 | (byte-defop 95 -1 byte-mult) ; v19 only |
| 491 | (byte-defop 96 1 byte-point) | 491 | (byte-defop 96 1 byte-point) |
| 492 | (byte-defop 97 0 byte-save-current-buffer | ||
| 493 | "To make a binding to record the current buffer") | ||
| 494 | (byte-defop 98 0 byte-goto-char) | 492 | (byte-defop 98 0 byte-goto-char) |
| 495 | (byte-defop 99 0 byte-insert) | 493 | (byte-defop 99 0 byte-insert) |
| 496 | (byte-defop 100 1 byte-point-max) | 494 | (byte-defop 100 1 byte-point-max) |
| @@ -507,7 +505,8 @@ Each element is (INDEX . VALUE)") | |||
| 507 | (byte-defop 111 1 byte-bobp) | 505 | (byte-defop 111 1 byte-bobp) |
| 508 | (byte-defop 112 1 byte-current-buffer) | 506 | (byte-defop 112 1 byte-current-buffer) |
| 509 | (byte-defop 113 0 byte-set-buffer) | 507 | (byte-defop 113 0 byte-set-buffer) |
| 510 | (byte-defop 114 1 byte-read-char-OBSOLETE) | 508 | (byte-defop 114 0 byte-save-current-buffer |
| 509 | "To make a binding to record the current buffer") | ||
| 511 | (byte-defop 115 0 byte-set-mark-OBSOLETE) | 510 | (byte-defop 115 0 byte-set-mark-OBSOLETE) |
| 512 | (byte-defop 116 1 byte-interactive-p) | 511 | (byte-defop 116 1 byte-interactive-p) |
| 513 | 512 | ||