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
723791ae
Commit
723791ae
authored
27 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Fix doc. typos "the the" -> "the".
parent
fea0053c
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
compiler/checkgen.lisp
+2
-2
2 additions, 2 deletions
compiler/checkgen.lisp
compiler/dump.lisp
+2
-2
2 additions, 2 deletions
compiler/dump.lisp
compiler/globaldb.lisp
+3
-3
3 additions, 3 deletions
compiler/globaldb.lisp
compiler/locall.lisp
+2
-2
2 additions, 2 deletions
compiler/locall.lisp
with
9 additions
and
9 deletions
compiler/checkgen.lisp
+
2
−
2
View file @
723791ae
...
...
@@ -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/checkgen.lisp,v 1.2
5
1998/0
1
/0
6 16:51:51
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/checkgen.lisp,v 1.2
6
1998/0
3
/0
1 21:55:39
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -146,7 +146,7 @@
;;; Cont is a continuation we are doing a type check on and Types is a list
;;; of types that we are checking its values against. If we have proven
;;; that Cont generates a fixed number of values, then for each value, we check
;;; whether it is cheaper to then difference between the
the
proven type and
;;; whether it is cheaper to then difference between the proven type and
;;; the corresponding type in Types. If so, we opt for a :HAIRY check with
;;; that test negated. Otherwise, we try to do a simple test, and if that is
;;; impossible, we do a hairy test with non-negated types. If true,
...
...
This diff is collapsed.
Click to expand it.
compiler/dump.lisp
+
2
−
2
View file @
723791ae
...
...
@@ -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/dump.lisp,v 1.6
6
199
7/11/07 19:24:07
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/dump.lisp,v 1.6
7
199
8/03/01 21:55:41
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -113,7 +113,7 @@
;;; A list of the Circularity structures for all of the circularities detected
;;; in the
the
current top-level call to Dump-Object. Setting this lobotomizes
;;; in the current top-level call to Dump-Object. Setting this lobotomizes
;;; circularity detection as well, since circular dumping uses the table.
;;;
(
defvar
*circularities-detected*
)
...
...
This diff is collapsed.
Click to expand it.
compiler/globaldb.lisp
+
3
−
3
View file @
723791ae
...
...
@@ -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/globaldb.lisp,v 1.3
5
199
7/11/04 09:10
:4
8
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/globaldb.lisp,v 1.3
6
199
8/03/01 21:55
:4
3
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -885,7 +885,7 @@
;;; CLEAR-INFO -- Public
;;;
(
defmacro
clear-info
(
class
type
name
)
"Clear the information of the
the
specified Type and Class for Name in the
"Clear the information of the specified Type and Class for Name in the
current environment, allowing any inherited info to become visible. We
return true if there was any info."
(
let*
((
class
(
symbol-name
class
))
...
...
@@ -1083,7 +1083,7 @@
(
define-info-type
variable
where-from
(
member
:declared
:assumed
:defined
)
:assumed
)
;;; The
the
lisp object which is the value of this constant, if known.
;;; The lisp object which is the value of this constant, if known.
(
define-info-type
variable
constant-value
t
(
if
(
boundp
name
)
(
values
(
symbol-value
name
)
t
)
...
...
This diff is collapsed.
Click to expand it.
compiler/locall.lisp
+
2
−
2
View file @
723791ae
...
...
@@ -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/locall.lisp,v 1.4
6
199
4/10/31 04:27:28 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.4
7
199
8/03/01 21:55:45 dtc
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -648,7 +648,7 @@
;;;
;;; Converting to a let has differing significance to various parts of the
;;; compiler:
;;; -- The body of a Let is spliced in immediately after the
the
corresponding
;;; -- The body of a Let is spliced in immediately after the corresponding
;;; combination node, making the control transfer explicit and allowing lets
;;; to mashed together into a single block. The value of the let is
;;; delivered directly to the original continuation for the call,
...
...
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