From: Guillermo J. Rozas Date: Wed, 24 May 1989 05:32:23 +0000 (+0000) Subject: Fix edit bug. MINIMUM_LENGTH must include the other fields! X-Git-Tag: 20090517-FFI~12046 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=d68dcd372ff806021862b4310f29f0ca2581ebda;p=mit-scheme.git Fix edit bug. MINIMUM_LENGTH must include the other fields! --- 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. */