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
d2d4a9c4
Commit
d2d4a9c4
authored
26 years ago
by
pw
Browse files
Options
Downloads
Patches
Plain Diff
Revision 1.43 neglected to entirely purge flushed 'append-unique'
from defpackage. Hopefully I got it right this time.
parent
6c21ff8a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/package.lisp
+4
-6
4 additions, 6 deletions
code/package.lisp
with
4 additions
and
6 deletions
code/package.lisp
+
4
−
6
View file @
d2d4a9c4
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.4
4
1998/05/04
00:03:21 dtc
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.4
5
1998/05/04
11:26:19 pw
Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -642,8 +642,7 @@
...
@@ -642,8 +642,7 @@
:format-arguments
(
list
option
)))
:format-arguments
(
list
option
)))
(
case
(
car
option
)
(
case
(
car
option
)
(
:nicknames
(
:nicknames
(
let
((
new
(
stringify-names
(
cdr
option
)
"package"
)))
(
setf
nicknames
(
stringify-names
(
cdr
option
)
"package"
)))
(
setf
nicknames
(
append-unique
new
nicknames
:nicknames
))))
(
:size
(
:size
(
cond
(
size
(
cond
(
size
(
error
'program-error
(
error
'program-error
...
@@ -669,9 +668,8 @@
...
@@ -669,9 +668,8 @@
(
setf
shadowing-imports
(
setf
shadowing-imports
(
acons
package-name
names
shadowing-imports
))))))
(
acons
package-name
names
shadowing-imports
))))))
(
:use
(
:use
(
let
((
new
(
stringify-names
(
cdr
option
)
"package"
)))
(
setf
use
(
stringify-names
(
cdr
option
)
"package"
)
)
(
setf
use
(
append-unique
new
use
:use
))
(
setf
use-p
t
))
(
setf
use-p
t
)))
(
:import-from
(
:import-from
(
let
((
package-name
(
stringify-name
(
second
option
)
"package"
))
(
let
((
package-name
(
stringify-name
(
second
option
)
"package"
))
(
names
(
stringify-names
(
cddr
option
)
"symbol"
)))
(
names
(
stringify-names
(
cddr
option
)
"symbol"
)))
...
...
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