aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorPaul Eggert2016-07-15 22:15:42 +0200
committerPaul Eggert2016-07-15 22:31:40 +0200
commit1873ef3b8986193803cee2721ee738f8dee39514 (patch)
tree59081c5e14d69bd83bdfb7ef6af6ddb35cf76b65 /src/bytecode.c
parente95b023163e96538b15f030b7176b7ec59cf86f5 (diff)
downloademacs-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.c19
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.
17You should have received a copy of the GNU General Public License 17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19 19
20/*
21hacked 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
31by 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