Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
cmucl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
26
Issues
26
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cmucl
cmucl
Commits
20c7daa7
Commit
20c7daa7
authored
Sep 30, 1994
by
ram
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
e8372e72
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
clx/clx.lisp
clx/clx.lisp
+1
-1
clx/dependent.lisp
clx/dependent.lisp
+1
-1
clx/input.lisp
clx/input.lisp
+1
-1
clx/macros.lisp
clx/macros.lisp
+4
-4
No files found.
clx/clx.lisp
View file @
20c7daa7
...
...
@@ -83,7 +83,7 @@
(
pushnew
:clx
*features*
)
(
pushnew
:xlib
*features*
)
(
defparameter
*version*
"MIT R5.0
1
"
)
(
defparameter
*version*
"MIT R5.0
2
"
)
(
pushnew
:clx-mit-r4
*features*
)
(
pushnew
:clx-mit-r5
*features*
)
...
...
clx/dependent.lisp
View file @
20c7daa7
...
...
@@ -2528,7 +2528,7 @@
(
defun
getenv
(
name
)
#+
excl
(
sys:getenv
name
)
#+
lcl3.0
(
lcl:environment-va
lu
e
name
)
#+
lcl3.0
(
lcl:environment-va
riabl
e
name
)
#+
CMU
(
cdr
(
assoc
name
ext:*environment-list*
:test
#'
string=
))
#-
(
or
excl
lcl3.0
CMU
)
(
progn
name
nil
))
...
...
clx/input.lisp
View file @
20c7daa7
...
...
@@ -1803,7 +1803,7 @@
;; macros for getting error fields. See DECODE-CORE-ERROR for
;; an example.
(
declare
(
type
symbol
error-key
)
(
type
function
function
))
(
type
(
or
symbol
list
)
function
))
;; First ensure the name is for a declared extension
(
unless
(
or
(
find
error-key
*xerror-vector*
)
(
dolist
(
extension
*extensions*
)
...
...
clx/macros.lisp
View file @
20c7daa7
...
...
@@ -218,7 +218,7 @@
(
let
((
value
(
gensym
)))
`
(
let
((
,
value
(
read-card8
,
index
)))
(
declare
(
type
(
integer
0
(
,
(
length
keywords
)))
,
value
))
(
type-check
,
value
(
integer
0
(
,
(
length
keywords
))))
(
type-check
,
value
'
(
integer
0
(
,
(
length
keywords
))))
(
svref
',
(
apply
#'
vector
keywords
)
,
value
))))
((
index
thing
&rest
keywords
)
`
(
write-card8
,
index
(
position
,
thing
...
...
@@ -238,7 +238,7 @@
(
let
((
value
(
gensym
)))
`
(
let
((
,
value
(
read-card16
,
index
)))
(
declare
(
type
(
integer
0
(
,
(
length
keywords
)))
,
value
))
(
type-check
,
value
(
integer
0
(
,
(
length
keywords
))))
(
type-check
,
value
'
(
integer
0
(
,
(
length
keywords
))))
(
svref
',
(
apply
#'
vector
keywords
)
,
value
))))
((
index
thing
&rest
keywords
)
`
(
write-card16
,
index
(
position
,
thing
...
...
@@ -258,7 +258,7 @@
(
let
((
value
(
gensym
)))
`
(
let
((
,
value
(
read-card29
,
index
)))
(
declare
(
type
(
integer
0
(
,
(
length
keywords
)))
,
value
))
(
type-check
,
value
(
integer
0
(
,
(
length
keywords
))))
(
type-check
,
value
'
(
integer
0
(
,
(
length
keywords
))))
(
svref
',
(
apply
#'
vector
keywords
)
,
value
))))
((
index
thing
&rest
keywords
)
`
(
write-card29
,
index
(
position
,
thing
...
...
@@ -307,7 +307,7 @@
(
let
((
value
(
gensym
)))
`
(
let
((
,
value
(
read-card29
,
index
)))
(
declare
(
type
(
integer
0
(
,
(
length
*boole-vector*
)))
,
value
))
(
type-check
,
value
(
integer
0
(
,
(
length
*boole-vector*
))))
(
type-check
,
value
'
(
integer
0
(
,
(
length
*boole-vector*
))))
(
svref
*boole-vector*
,
value
))))
((
index
thing
)
`
(
write-card29
,
index
(
position
,
thing
(
the
simple-vector
*boole-vector*
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment