/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.c,v 1.14 1989/05/03 02:04:20 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.c,v 1.15 1989/05/16 16:40:15 cph Exp $
Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology
case '2': result |= (1 << 17); break;
case '3': result |= (1 << 18); break;
case '4': result |= (1 << 19); break;
+ case 'p': result |= (1 << 20); break;
case ' ': break;
default: error_bad_range_arg (1);
}
{
WIN_IF_LEFT_END (start);
LEFT_QUOTED_P (start, quoted);
- WIN_IF (quoted ||
- ((SYNTAX_ENTRY_CODE (PEEK_LEFT (start))) != syntaxcode_quote));
+ WIN_IF (quoted);
+ {
+ long sentry = (PEEK_LEFT (start));
+ WIN_IF (! (((SYNTAX_ENTRY_CODE (sentry)) == syntaxcode_quote)
+ || (SYNTAX_ENTRY_PREFIX (sentry))));
+ }
MOVE_LEFT (start);
}
}
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.h,v 1.4 1989/05/01 19:38:49 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/syntax.h,v 1.5 1989/05/16 16:39:58 cph Rel $
Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology
#define SYNTAX_ENTRY_COMSTART_SECOND(entry) (((entry) >> 17) & 1)
#define SYNTAX_ENTRY_COMEND_FIRST(entry) (((entry) >> 18) & 1)
#define SYNTAX_ENTRY_COMEND_SECOND(entry) (((entry) >> 19) & 1)
+#define SYNTAX_ENTRY_PREFIX(entry) (((entry) >> 20) & 1)
enum syntaxcode /* The possible syntax codes. */
{
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/version.h,v 10.76 1989/04/28 03:48:08 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/version.h,v 10.77 1989/05/16 16:40:54 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
#define VERSION 10
#endif
#ifndef SUBVERSION
-#define SUBVERSION 76
+#define SUBVERSION 77
#endif
#ifndef UCODE_TABLES_FILENAME
/* -*-C-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 10.76 1989/04/28 03:48:08 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/version.h,v 10.77 1989/05/16 16:40:54 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
#define VERSION 10
#endif
#ifndef SUBVERSION
-#define SUBVERSION 76
+#define SUBVERSION 77
#endif
#ifndef UCODE_TABLES_FILENAME