diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-07-15 22:15:42 +0200 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-07-15 22:31:40 +0200 |
commit | 1873ef3b8986193803cee2721ee738f8dee39514 (patch) | |
tree | 59081c5e14d69bd83bdfb7ef6af6ddb35cf76b65 | |
parent | e95b023163e96538b15f030b7176b7ec59cf86f5 (diff) |
Remove now-inaccurate bytecode comments
* src/bytecode.c: Remove comments that are no longer accurate.
Most of these are actually old ChangeLog entries.
-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 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 <http://www.gnu.org/licenses/>. */ -/* -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 <config.h> #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; |