Skip to content
Snippets Groups Projects
Commit 097ec481 authored by gerd's avatar gerd
Browse files

(in-package :cl-user)

	(require :gray-streams)

	(defclass my-in-stream (ext:fundamental-character-input-stream)
	  ((last-char :initarg :last-char)))

	(let ((string " a ")
	      (i 0))
	  (defmethod ext:stream-read-char ((s my-in-stream))
	    (with-input-from-string (s "b") (read s))
	    (with-slots (last-char) s
	      (cond (last-char (prog1 last-char (setf last-char nil)))
		     (t (prog1 (aref string i)
			  (setq i (mod (1+ i) (length string)))))))))

	(defmethod ext:stream-unread-char ((s my-in-stream) char)
	  (setf (slot-value s 'last-char) char)
	  nil)

	(setq x (make-instance 'my-in-stream :last-char nil))
	(read x)
	 => b, instead of a

	* src/code/reader.lisp: Use a new read buffer for each call to
	read or read-preserving-whitespace, instead of using one global
	buffer.  From Helmut Eller.
parent 290891fc
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment