diff options
| author | Paul Eggert | 2016-07-15 22:15:42 +0200 |
|---|---|---|
| committer | Paul Eggert | 2016-07-15 22:31:40 +0200 |
| commit | 1873ef3b8986193803cee2721ee738f8dee39514 (patch) | |
| tree | 59081c5e14d69bd83bdfb7ef6af6ddb35cf76b65 /src/bytecode.c | |
| parent | e95b023163e96538b15f030b7176b7ec59cf86f5 (diff) | |
| download | emacs-1873ef3b8986193803cee2721ee738f8dee39514.tar.gz emacs-1873ef3b8986193803cee2721ee738f8dee39514.zip | |
Remove now-inaccurate bytecode comments
* src/bytecode.c: Remove comments that are no longer accurate.
Most of these are actually old ChangeLog entries.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index c9e4a25dfa6..75d51cc3e84 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -17,22 +17,6 @@ GNU General Public License for more details. | |||
| 17 | You should have received a copy of the GNU General Public License | 17 | You should have received a copy of the GNU General Public License |
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 19 | 19 | ||
| 20 | /* | ||
| 21 | hacked on by jwz@lucid.com 17-jun-91 | ||
| 22 | o added a compile-time switch to turn on simple sanity checking; | ||
| 23 | o put back the obsolete byte-codes for error-detection; | ||
| 24 | o added a new instruction, unbind_all, which I will use for | ||
| 25 | tail-recursion elimination; | ||
| 26 | o made temp_output_buffer_show be called with the right number | ||
| 27 | of args; | ||
| 28 | o made the new bytecodes be called with args in the right order; | ||
| 29 | o added metering support. | ||
| 30 | |||
| 31 | by Hallvard: | ||
| 32 | o added relative jump instructions; | ||
| 33 | o all conditionals now only do QUIT if they jump. | ||
| 34 | */ | ||
| 35 | |||
| 36 | #include <config.h> | 20 | #include <config.h> |
| 37 | 21 | ||
| 38 | #include "lisp.h" | 22 | #include "lisp.h" |
| @@ -314,8 +298,7 @@ struct byte_stack | |||
| 314 | #endif | 298 | #endif |
| 315 | 299 | ||
| 316 | /* The string containing the byte-code, and its current address. | 300 | /* The string containing the byte-code, and its current address. |
| 317 | Storing this here protects it from GC because mark_byte_stack | 301 | Storing this here protects it from GC. */ |
| 318 | marks it. */ | ||
| 319 | Lisp_Object byte_string; | 302 | Lisp_Object byte_string; |
| 320 | const unsigned char *byte_string_start; | 303 | const unsigned char *byte_string_start; |
| 321 | 304 | ||