From d68dcd372ff806021862b4310f29f0ca2581ebda Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Wed, 24 May 1989 05:32:23 +0000 Subject: [PATCH] Fix edit bug. MINIMUM_LENGTH must include the other fields! --- v7/src/microcode/const.h | 6 +++--- v8/src/microcode/const.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/v7/src/microcode/const.h b/v7/src/microcode/const.h index ec1b4bcb1..5bb3c9f7b 100644 --- a/v7/src/microcode/const.h +++ b/v7/src/microcode/const.h @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/const.h,v 9.30 1989/03/27 23:14:42 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/const.h,v 9.31 1989/05/24 05:32:23 jinx Exp $ * * Named constants used throughout the interpreter * @@ -166,8 +166,8 @@ MIT in each case. */ #define REGBLOCK_EXPR 5 #define REGBLOCK_RETURN 6 #define REGBLOCK_LEXPR_ACTUALS 7 -#define REGBLOCK_MINIMUM_LENGTH 8 -#define REGBLOCK_PRIMITIVE 9 +#define REGBLOCK_PRIMITIVE 8 +#define REGBLOCK_MINIMUM_LENGTH 9 /* Codes specifying how to start scheme at boot time. */ diff --git a/v8/src/microcode/const.h b/v8/src/microcode/const.h index 42942f0e6..64a9de960 100644 --- a/v8/src/microcode/const.h +++ b/v8/src/microcode/const.h @@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. */ -/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/const.h,v 9.30 1989/03/27 23:14:42 jinx Exp $ +/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/const.h,v 9.31 1989/05/24 05:32:23 jinx Exp $ * * Named constants used throughout the interpreter * @@ -166,8 +166,8 @@ MIT in each case. */ #define REGBLOCK_EXPR 5 #define REGBLOCK_RETURN 6 #define REGBLOCK_LEXPR_ACTUALS 7 -#define REGBLOCK_MINIMUM_LENGTH 8 -#define REGBLOCK_PRIMITIVE 9 +#define REGBLOCK_PRIMITIVE 8 +#define REGBLOCK_MINIMUM_LENGTH 9 /* Codes specifying how to start scheme at boot time. */ -- 2.25.1