Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alastair Bridgewater
clim-tos
Commits
33155938
Commit
33155938
authored
7 years ago
by
Jacek Złydach
Browse files
Options
Downloads
Patches
Plain Diff
Changed eq to eql in number comparison.
parent
635c0d6d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
clim/accept.lisp
+4
-4
4 additions, 4 deletions
clim/accept.lisp
with
4 additions
and
4 deletions
clim/accept.lisp
+
4
−
4
View file @
33155938
...
...
@@ -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
(
eq
l
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,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment