From 239aba83feb6a27f2c9a3fefb5620149b96500fc Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 16 May 1989 17:01:17 +0000 Subject: [PATCH] Add new syntax_entry bit, "p", which indicates that the character is a prefix character. A combination of `syntaxcode_whitespace' and this bit is equivalent to `syntaxcode_quote' -- except that the new bit can be used in combination with other codes to provide new functionality. --- v7/src/microcode/syntax.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/v7/src/microcode/syntax.c b/v7/src/microcode/syntax.c index 4aad917aa..68b4d3d90 100644 --- a/v7/src/microcode/syntax.c +++ b/v7/src/microcode/syntax.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.c,v 1.16 1989/05/16 17:00:37 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.c,v 1.17 1989/05/16 17:01:17 cph Exp $ Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology @@ -108,7 +108,6 @@ DEFINE_PRIMITIVE ("STRING->SYNTAX-ENTRY", Prim_string_to_syntax_entry, 1, 1, 0) CHECK_ARG (1, STRING_P); length = (string_length (ARG_REF (1))); - if (length > 7) error_bad_range_arg (1); scan = (string_pointer ((ARG_REF (1)), 0)); if ((length--) > 0) -- 2.25.1