Fix pagination.
authorChris Hanson <org/chris-hanson/cph>
Fri, 21 Jun 2002 02:04:22 +0000 (02:04 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 21 Jun 2002 02:04:22 +0000 (02:04 +0000)
v7/src/runtime/mit-syntax.scm

index 7f138d27b3f7b4a834ec9e919f7d7ec254c31e37..f64414c39bbe60dcc7f8e259202ab6ec688efd07 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: mit-syntax.scm,v 14.6 2002/04/17 15:02:21 cph Exp $
+;;; $Id: mit-syntax.scm,v 14.7 2002/06/21 02:04:22 cph Exp $
 ;;;
 ;;; Copyright (c) 1989-1991, 2001, 2002 Massachusetts Institute of Technology
 ;;;
             item)))
     (if (not (keyword-item? item))
        (let ((history (item/history item)))
-         (syntax-error history
-                       "Syntactic binding value must be a keyword:"
+         (syntax-error history "Syntactic binding value must be a keyword:"
                        (history/original-form history))))
     (overloaded-binding-theory environment name item history)))
 
 (define (variable-binding-theory environment name item history)
   (if (keyword-item? item)
       (let ((history (item/history item)))
-       (syntax-error history
-                     "Binding value may not be a keyword:"
+       (syntax-error history "Binding value may not be a keyword:"
                      (history/original-form history))))
   (overloaded-binding-theory environment name item history))