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
76505007
Commit
76505007
authored
15 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Add docstring for SET-SYSTEM-EXTERNAL-FORMAT.
parent
7d4c095d
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
+8
-1
8 additions, 1 deletion
code/extfmts.lisp
with
8 additions
and
1 deletion
code/extfmts.lisp
+
8
−
1
View file @
76505007
...
...
@@ -5,7 +5,7 @@
;;; domain.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.1
8
2009/
09/19 14:12:22
rtoy
Rel
$"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.1
9
2009/
10/02 20:15:04
rtoy
Exp
$"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -801,6 +801,13 @@
(
defun
set-system-external-format
(
terminal
&optional
filenames
)
"Change the external format of the standard streams to Terminal.
The standard streams are sys::*stdin*, sys::*stdout*, and
sys::*stderr*, which are normally the input and/or output streams
for *standard-input* and *standard-output*. Also sets sys::*tty*
(normally *terminal-io* to the given external format. If the
optional argument Filenames is gvien, then the filename encoding is
set to the specified format."
(
unless
(
find-external-format
terminal
)
(
error
"Can't find external-format ~S."
terminal
))
(
setf
(
stream-external-format
sys:*stdin*
)
terminal
...
...
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