Fix typo in previous change.
authorChris Hanson <org/chris-hanson/cph>
Mon, 8 May 2000 20:07:27 +0000 (20:07 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 8 May 2000 20:07:27 +0000 (20:07 +0000)
v7/src/edwin/comred.scm

index bdd9c55f960d3e34ac964609d93bc61870d17287..e9bd3026437c3d1fb9df6b0c2a34330e840ce356 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: comred.scm,v 1.119 2000/05/08 17:53:11 cph Exp $
+;;; $Id: comred.scm,v 1.120 2000/05/08 20:07:27 cph Exp $
 ;;;
 ;;; Copyright (c) 1986, 1989-2000 Massachusetts Institute of Technology
 ;;;
            (lambda ()
              (let ((next (car *command-suffixes*)))
                (and (pair? next)
-                    (if (pair? (cdr next))
-                        (set-car! *command-suffixes* (cdr next))
-                        (begin
-                          (set-car! *command-suffixes* '())
-                          (set-cdr! *command-suffixes* '()))))
-               (car next))))))
+                    (begin
+                      (if (pair? (cdr next))
+                          (set-car! *command-suffixes* (cdr next))
+                          (begin
+                            (set-car! *command-suffixes* '())
+                            (set-cdr! *command-suffixes* '())))
+                      (car next))))))))
       (if item
          (begin
            (apply (car item) (cdr item))