Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
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
Carl Shapiro
cmucl
Commits
f6aae7db
Commit
f6aae7db
authored
27 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Allow a pathname device to be a string; from Raymond Toy.
parent
2491052f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
code/pathname.lisp
+3
-3
3 additions, 3 deletions
code/pathname.lisp
compiler/fndb.lisp
+2
-2
2 additions, 2 deletions
compiler/fndb.lisp
compiler/generic/vm-type.lisp
+2
-2
2 additions, 2 deletions
compiler/generic/vm-type.lisp
with
7 additions
and
7 deletions
code/pathname.lisp
+
3
−
3
View file @
f6aae7db
...
...
@@ -4,7 +4,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.3
1
1997/
06/06 06:48:14
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.3
2
1997/
10/02 18:31:50
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -87,7 +87,7 @@
;; Slot holds the host, at present either a UNIX or logical host.
(
host
nil
:type
(
or
host
null
))
;; Device is the name of a logical or physical device holding files.
(
device
nil
:type
component-tokens
)
(
device
nil
:type
(
or
simple-string
component-tokens
)
)
;; A list of strings that are the component subdirectory components.
(
directory
nil
:type
list
)
;; The filename.
...
...
@@ -611,7 +611,7 @@
"Makes a new pathname from the component arguments. Note that host is
a host-structure or string."
(
declare
(
type
(
or
string
host
component-tokens
)
host
)
(
type
component-tokens
device
)
(
type
(
or
string
component-tokens
)
device
)
(
type
(
or
list
string
pattern
component-tokens
)
directory
)
(
type
(
or
string
pattern
component-tokens
)
name
type
)
(
type
(
or
integer
component-tokens
(
member
:newest
))
version
)
...
...
This diff is collapsed.
Click to expand it.
compiler/fndb.lisp
+
2
−
2
View file @
f6aae7db
...
...
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.7
3
1997/
09/03 20:27:11
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.7
4
1997/
10/02 18:31:58
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -948,7 +948,7 @@
(
defknown
make-pathname
(
&key
(
:defaults
pathnamelike
)
(
:host
(
or
string
pathname-host
))
(
:device
pathname-device
)
(
:device
(
or
string
pathname-device
)
)
(
:directory
(
or
pathname-directory
string
(
member
:wild
)))
(
:name
(
or
pathname-name
string
(
member
:wild
)))
(
:type
(
or
pathname-type
string
(
member
:wild
)))
...
...
This diff is collapsed.
Click to expand it.
compiler/generic/vm-type.lisp
+
2
−
2
View file @
f6aae7db
...
...
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.3
2
1997/0
4
/0
1
1
9:24
:0
9
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.3
3
1997/
1
0/0
2
1
8:32
:0
3
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -59,7 +59,7 @@
;;;
;;; Pathname pieces, as returned by the PATHNAME-xxx functions.
(
deftype
pathname-host
()
'
(
or
lisp::host
null
))
(
deftype
pathname-device
()
'
(
member
nil
:unspecific
))
(
deftype
pathname-device
()
'
(
or
simple-string
(
member
nil
:unspecific
))
)
(
deftype
pathname-directory
()
'list
)
(
deftype
pathname-name
()
'
(
or
simple-string
lisp::pattern
(
member
nil
:unspecific
:wild
)))
...
...
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