Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Tarn Burton
asdf
Commits
8a550a04
Commit
8a550a04
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Slightly better GCL support, thanks to Camm Maguire. Still not there, though.
parent
f2349e62
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
test/script-support.lisp
+2
-2
2 additions, 2 deletions
test/script-support.lisp
test/test-run-program.script
+1
-1
1 addition, 1 deletion
test/test-run-program.script
uiop/common-lisp.lisp
+1
-1
1 addition, 1 deletion
uiop/common-lisp.lisp
uiop/pathname.lisp
+2
-2
2 additions, 2 deletions
uiop/pathname.lisp
with
6 additions
and
6 deletions
test/script-support.lisp
+
2
−
2
View file @
8a550a04
...
@@ -33,9 +33,9 @@ Some constraints:
...
@@ -33,9 +33,9 @@ Some constraints:
(
in-package
:asdf-test
)
(
in-package
:asdf-test
)
(
declaim
(
optimize
(
speed
2
)
(
safety
3
)
#-
(
or
allegro
gcl
genera
)
(
debug
3
)
(
declaim
(
optimize
(
speed
2
)
(
safety
#-
gcl
3
#+
gcl
0
)
#-
(
or
allegro
gcl
genera
)
(
debug
3
)
#+
(
or
cmu
scl
)
(
c::brevity
2
)))
#+
(
or
cmu
scl
)
(
c::brevity
2
)))
(
proclaim
'
(
optimize
(
speed
2
)
(
safety
3
)
#-
(
or
allegro
gcl
genera
)
(
debug
3
)
(
proclaim
'
(
optimize
(
speed
2
)
(
safety
#-
gcl
3
#+
gcl
0
)
#-
(
or
allegro
gcl
genera
)
(
debug
3
)
#+
(
or
cmu
scl
)
(
c::brevity
2
)))
#+
(
or
cmu
scl
)
(
c::brevity
2
)))
(
defvar
*trace-symbols*
(
defvar
*trace-symbols*
...
...
This diff is collapsed.
Click to expand it.
test/test-run-program.script
+
1
−
1
View file @
8a550a04
;; -*- Lisp -*-
;; -*- Lisp -*-
(declaim (optimize (debug 3) (safety
3
)))
(declaim (optimize (debug 3) (safety
#-gcl 3 #+gcl 0
)))
;; On Windows, normalize away CRLF into jut the unixy LF.
;; On Windows, normalize away CRLF into jut the unixy LF.
(defun dewindowize (x)
(defun dewindowize (x)
...
...
This diff is collapsed.
Click to expand it.
uiop/common-lisp.lisp
+
1
−
1
View file @
8a550a04
...
@@ -172,7 +172,7 @@ FROB them, that is to say, remove them if FROB is NIL,
...
@@ -172,7 +172,7 @@ FROB them, that is to say, remove them if FROB is NIL,
replace by FROB if FROB is a STRING, or if FROB is a FUNCTION,
replace by FROB if FROB is a STRING, or if FROB is a FUNCTION,
call FROB with the match and a function that emits a string in the output.
call FROB with the match and a function that emits a string in the output.
Return a string made of the parts not omitted or emitted by FROB."
Return a string made of the parts not omitted or emitted by FROB."
(
declare
(
optimize
(
speed
0
)
(
safety
3
)
(
debug
3
)))
(
declare
(
optimize
(
speed
0
)
(
safety
#-
gcl
3
#+
gcl
0
)
(
debug
3
)))
(
let
((
length
(
length
string
))
(
stream
nil
))
(
let
((
length
(
length
string
))
(
stream
nil
))
(
labels
((
emit-string
(
x
&optional
(
start
0
)
(
end
(
length
x
)))
(
labels
((
emit-string
(
x
&optional
(
start
0
)
(
end
(
length
x
)))
(
when
(
<
start
end
)
(
when
(
<
start
end
)
...
...
This diff is collapsed.
Click to expand it.
uiop/pathname.lisp
+
2
−
2
View file @
8a550a04
...
@@ -102,8 +102,8 @@ by the underlying implementation's MAKE-PATHNAME and other primitives"
...
@@ -102,8 +102,8 @@ by the underlying implementation's MAKE-PATHNAME and other primitives"
;; See CLHS make-pathname and 19.2.2.2.3.
;; See CLHS make-pathname and 19.2.2.2.3.
;; This will be :unspecific if supported, or NIL if not.
;; This will be :unspecific if supported, or NIL if not.
(
defparameter
*unspecific-pathname-type*
(
defparameter
*unspecific-pathname-type*
#+
(
or
abcl
allegro
clozure
cmu
gcl
genera
lispworks
mkcl
sbcl
scl
xcl
)
:unspecific
#+
(
or
abcl
allegro
clozure
cmu
genera
lispworks
mkcl
sbcl
scl
xcl
)
:unspecific
#+
(
or
clisp
ecl
#|These haven't been tested:|#
cormanlisp
mcl
)
nil
#+
(
or
clisp
ecl
gcl
#|These haven't been tested:|#
cormanlisp
mcl
)
nil
"Unspecific type component to use with the underlying implementation's MAKE-PATHNAME"
)
"Unspecific type component to use with the underlying implementation's MAKE-PATHNAME"
)
(
defun
make-pathname*
(
&rest
keys
&key
(
directory
nil
#+
gcl2.6
directoryp
)
(
defun
make-pathname*
(
&rest
keys
&key
(
directory
nil
#+
gcl2.6
directoryp
)
...
...
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