* Fix spelling mistake.
authorNeil Jerram <neil@ossau.uklinux.net>
Fri, 8 Dec 2000 15:39:10 +0000 (15:39 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Fri, 8 Dec 2000 15:39:10 +0000 (15:39 +0000)
ice-9/ChangeLog
ice-9/emacs.scm

index 0f89081..530f80c 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-07  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * emacs.scm (flush-whitespace): Fix spelling typo ("recieving").
+
 2000-11-28  Dirk Herrmann  <D.Herrmann@tu-bs.de>
 
        * boot-9.scm (read-delimited), lineio.scm
index 850571d..4fa6bcd 100644 (file)
         (lambda ()
           (let loop ((c (read-char port)))
             (cond ((eq? c the-eof-object)
-                   (error "End of file while recieving Emacs data"))
+                   (error "End of file while receiving Emacs data"))
                   ((memq c whitespace-chars) (loop (read-char port)))
                   ((eq? c #\;) (flush-line port) (loop (read-char port)))
                   (else (unread-char c port))))