projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
480ca2b
)
Treat '\r' as whitespace.
author
Chris Hanson
<org/chris-hanson/cph>
Wed, 15 Dec 2004 02:24:11 +0000
(
02:24
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Wed, 15 Dec 2004 02:24:11 +0000
(
02:24
+0000)
v7/src/microcode/findprim.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/findprim.c
b/v7/src/microcode/findprim.c
index 509990538668e94ab0826a459751f9281f3be666..b60097cbd3266e3ecee6ea5494a021f80c224eab 100644
(file)
--- a/
v7/src/microcode/findprim.c
+++ b/
v7/src/microcode/findprim.c
@@
-1,8
+1,9
@@
/* -*-C-*-
-$Id: findprim.c,v 9.5
7 2003/02/14 18:28:19
cph Exp $
+$Id: findprim.c,v 9.5
8 2004/12/15 02:24:11
cph Exp $
-Copyright (c) 1987-2001 Massachusetts Institute of Technology
+Copyright 1986,1987,1988,1989,1990,1992 Massachusetts Institute of Technology
+Copyright 1993,1996,1997,2000,2001,2004 Massachusetts Institute of Technology
This file is part of MIT/GNU Scheme.
@@
-809,6
+810,7
@@
DEFUN (whitespace, (c),
case ' ':
case '\t':
case '\n':
+ case '\r':
case '(':
case ')':
case ',': return TRUE;