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
Container 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Jon Boone
cmucl
Commits
02eaab2e
Commit
02eaab2e
authored
14 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Correct docstring for OCTETS-TO-STRING to reflect what actually
happens.
parent
b45fb97e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/extfmts.lisp
+7
-5
7 additions, 5 deletions
code/extfmts.lisp
with
7 additions
and
5 deletions
code/extfmts.lisp
+
7
−
5
View file @
02eaab2e
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
;;; domain.
;;; domain.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.4
0
2010/09/0
6 19:01:5
6 rtoy
Exp
$"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.4
1
2010/09/0
8 02:58:0
6 rtoy
Rel
$"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -921,11 +921,13 @@ character and illegal outputs are replaced by a question mark.")
...
@@ -921,11 +921,13 @@ character and illegal outputs are replaced by a question mark.")
the length of String). If the string is not large enough to hold
the length of String). If the string is not large enough to hold
all of characters, then some octets will not be converted. A State
all of characters, then some octets will not be converted. A State
may also be specified; this is used as the state of the external
may also be specified; this is used as the state of the external
format.
format. An error method may also be specified by Error, which
defaults to NIL to mean the default handling of conversion errors is
done.
Four values are returned: the string, the
number of characters read,
Four values are returned: the string, the
position of where the next
the number of octets actually consumed and the new state of the
character would be read into the string, the number of octets
external format."
actually consumed and the new state of the
external format."
(
declare
(
type
(
simple-array
(
unsigned-byte
8
)
(
*
))
octets
)
(
declare
(
type
(
simple-array
(
unsigned-byte
8
)
(
*
))
octets
)
(
type
kernel:index
start
s-start
)
(
type
kernel:index
start
s-start
)
(
type
(
or
kernel:index
null
)
end
)
(
type
(
or
kernel:index
null
)
end
)
...
...
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