From: Paul Eggert Date: Fri, 15 Jul 2016 20:15:42 +0000 (+0200) Subject: Remove now-inaccurate bytecode comments X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/1873ef3b8986193803cee2721ee738f8dee39514 Remove now-inaccurate bytecode comments * src/bytecode.c: Remove comments that are no longer accurate. Most of these are actually old ChangeLog entries. --- diff --git a/src/bytecode.c b/src/bytecode.c index c9e4a25dfa..75d51cc3e8 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -17,22 +17,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ -/* -hacked on by jwz@lucid.com 17-jun-91 - o added a compile-time switch to turn on simple sanity checking; - o put back the obsolete byte-codes for error-detection; - o added a new instruction, unbind_all, which I will use for - tail-recursion elimination; - o made temp_output_buffer_show be called with the right number - of args; - o made the new bytecodes be called with args in the right order; - o added metering support. - -by Hallvard: - o added relative jump instructions; - o all conditionals now only do QUIT if they jump. - */ - #include #include "lisp.h" @@ -314,8 +298,7 @@ struct byte_stack #endif /* The string containing the byte-code, and its current address. - Storing this here protects it from GC because mark_byte_stack - marks it. */ + Storing this here protects it from GC. */ Lisp_Object byte_string; const unsigned char *byte_string_start;