Gaak! Fix nasty typo.
authorChris Hanson <org/chris-hanson/cph>
Wed, 14 Nov 1990 17:05:25 +0000 (17:05 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 14 Nov 1990 17:05:25 +0000 (17:05 +0000)
v7/src/microcode/prosterm.c
v7/src/microcode/pruxsock.c
v7/src/microcode/x11term.c

index 3be660c227c5181c825e9f2c8487203c93c50c8c..58516304efac994c16ecd5dc92405d4e299fb59b 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/prosterm.c,v 1.6 1990/11/08 11:05:26 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/prosterm.c,v 1.7 1990/11/14 16:59:18 cph Rel $
 
 Copyright (c) 1990 Massachusetts Institute of Technology
 
@@ -67,7 +67,7 @@ DEFINE_PRIMITIVE ("BAUD-INDEX->RATE", Prim_baud_index_to_rate, 1, 1, 0)
 {
   PRIMITIVE_HEADER (1);
   PRIMITIVE_RETURN
-    (long_to_integer (OS_baud_index_to_rate [arg_baud_index (1)]));
+    (long_to_integer (OS_baud_index_to_rate (arg_baud_index (1))));
 }
 
 DEFINE_PRIMITIVE ("BAUD-RATE->INDEX", Prim_baud_rate_to_index, 1, 1, 0)
index 93d48889c484c52e0d0409b741c9f520bb141a8c..adecb6b87424556e9fb505c5eb094339f9ea0cfc 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/pruxsock.c,v 1.2 1990/11/08 11:06:58 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/pruxsock.c,v 1.3 1990/11/14 17:01:59 cph Rel $
 
 Copyright (c) 1990 Massachusetts Institute of Technology
 
@@ -139,7 +139,7 @@ DEFINE_PRIMITIVE ("TCP-SERVER-CONNECTION-ACCEPT", Prim_tcp_server_connection_acc
   "Poll SERVER-SOCKET for a connection.\n\
 If a connection is available, it is opened and returned.\n\
 Otherwise, if SERVER-SOCKET is non-blocking, returns #F.\n\
-Second argument PEER-ADDRESS, if not #F, must be a host address string.
+Second argument PEER-ADDRESS, if not #F, must be a host address string.\n\
 It is filled with the peer's address if given.")
 {
   PRIMITIVE_HEADER (2);
index 75e7daa0eb732d6487eb42277bfd751ca148c957..d2e3fd53faca6fb11b687788522ecc0a41f97d33 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/x11term.c,v 1.13 1990/10/25 21:34:27 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/x11term.c,v 1.14 1990/11/14 17:05:25 cph Rel $
 
 Copyright (c) 1989, 1990 Massachusetts Institute of Technology
 
@@ -195,7 +195,7 @@ DEFUN (xterm_y_coordinate_map, (xw, y), struct xwindow * xw AND unsigned int y)
 }
 
 static void
-DEFUN (xterm_copy_map_line, (xw, x_start, x_end, y1, y2),
+DEFUN (xterm_copy_map_line, (xw, x_start, x_end, y_from, y_to),
        struct xwindow * xw AND
        unsigned int x_start AND
        unsigned int x_end AND