Skip to content
Snippets Groups Projects
Commit 33155938 authored by Jacek Złydach's avatar Jacek Złydach
Browse files

Changed eq to eql in number comparison.

parent 635c0d6d
No related branches found
No related tags found
No related merge requests found
......@@ -444,14 +444,14 @@
;; protocol on input-from-string streams
(defmethod stream-read-gesture ((stream t)
&key timeout peek-p
input-wait-test input-wait-handler
pointer-button-press-handler)
input-wait-test input-wait-handler
pointer-button-press-handler)
(declare (ignore input-wait-test input-wait-handler pointer-button-press-handler))
;; avoid using STREAM-x functions to reduce Gray stream dependence,
;; tfb 13-jun-2000
(let ((char (if (eq timeout 0)
(let ((char (if (eql timeout 0)
(read-char-no-hang stream nil *end-of-file-marker*)
(read-char stream nil *end-of-file-marker*))))
(read-char stream nil *end-of-file-marker*))))
(when (and char peek-p
;; spr26071 -pnc
;; As noted above, this used to call stream-unread-char,
......
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