X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcode%2Fstream.lisp;h=cccdba4f111d4a48353611c698852aae3dc2b532;hb=334af30b26555f0bf706f7157b399bdbd4fad548;hp=d2d6b2036608d7c64d777b3b92397d497ebf006e;hpb=0b5610d8a220a4b20cbeac958953ca4d67c00038;p=sbcl.git diff --git a/src/code/stream.lisp b/src/code/stream.lisp index d2d6b20..cccdba4 100644 --- a/src/code/stream.lisp +++ b/src/code/stream.lisp @@ -65,7 +65,7 @@ ;;; ;;; Many of the slots of the stream structure contain functions ;;; which are called to perform some operation on the stream. Closed -;;; streams have #'Closed-Flame in all of their function slots. If +;;; streams have #'CLOSED-FLAME in all of their function slots. If ;;; one side of an I/O or echo stream is closed, the whole stream is ;;; considered closed. The functions in the operation slots take ;;; arguments as follows: @@ -79,7 +79,7 @@ ;;; Misc: Stream, Operation, &Optional Arg1, Arg2 ;;; ;;; In order to save space, some of the less common stream operations -;;; are handled by just one function, the Misc method. This function +;;; are handled by just one function, the MISC method. This function ;;; is passed a keyword which indicates the operation to perform. ;;; The following keywords are used: ;;; :listen - Return the following values: @@ -95,11 +95,12 @@ ;;; :finish-output, ;;; :force-output - Cause output to happen ;;; :clear-output - Clear any undone output -;;; :element-type - Return the type of element the stream deals wit