Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
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
Richard M Kreuter
cmucl-copy
Commits
2cfbb9b9
Commit
2cfbb9b9
authored
21 years ago
by
pw
Browse files
Options
Downloads
Patches
Plain Diff
open-clx-display: use :protocol :unix in call to xlib:open-display
when host is "unix" magic host.
parent
adf1fff8
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/clx-ext.lisp
+3
-1
3 additions, 1 deletion
code/clx-ext.lisp
with
3 additions
and
1 deletion
code/clx-ext.lisp
+
3
−
1
View file @
2cfbb9b9
...
@@ -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/clx-ext.lisp,v 1.1
5
20
01/
03/0
4 20:12:30
pw Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/clx-ext.lisp,v 1.1
6
2003/0
7/16 17:04:55
pw Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -53,6 +53,7 @@
...
@@ -53,6 +53,7 @@
;; to open an AF_UNIX socket instead of an AF_INET one.
;; to open an AF_UNIX socket instead of an AF_INET one.
;; This is supposed to be faster on a local server.
;; This is supposed to be faster on a local server.
(
host-name
"unix"
)
(
host-name
"unix"
)
(
protocol
:unix
)
(
auth-name
nil
)
(
auth-name
nil
)
(
auth-data
nil
)
(
auth-data
nil
)
(
display-num
nil
)
(
display-num
nil
)
...
@@ -89,6 +90,7 @@
...
@@ -89,6 +90,7 @@
(
xlib::get-best-authorization
(
machine-instance
)
display-num
:tcp
)))
(
xlib::get-best-authorization
(
machine-instance
)
display-num
:tcp
)))
(
let
((
display
(
xlib:open-display
host-name
(
let
((
display
(
xlib:open-display
host-name
:display
display-num
:display
display-num
:protocol
protocol
:authorization-name
auth-name
:authorization-name
auth-name
:authorization-data
auth-data
)))
:authorization-data
auth-data
)))
(
when
screen-num
(
when
screen-num
...
...
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