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
1a1f7b89
"src/code/stream.lisp" did not exist on "6d513f3fda08e4e8f9167f86cd0a1612a4336d01"
Commit
1a1f7b89
authored
30 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Tweaked to not clash with stuff being compiled.
parent
1f885ff2
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/globals.lisp
+43
-38
43 additions, 38 deletions
code/globals.lisp
with
43 additions
and
38 deletions
code/globals.lisp
+
43
−
38
View file @
1a1f7b89
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/globals.lisp,v 1.
8
1994/10/0
2 22:36:4
8 ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/globals.lisp,v 1.
9
1994/10/0
5 16:40:3
8 ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -21,42 +21,47 @@
;;;
(
in-package
"LISP"
)
(
pro
claim
'
(
special
*keyword-package*
*lisp-package*
*package*
*query-io*
*terminal-io*
*error-output*
*trace-output*
*debug-io*
*standard-input*
*standard-output*
*hemlock-version*
*evalhook*
*applyhook*
*task-self*
*command-line-switches*
*command-switch-demons*
ext::temporary-foreign-files
*display-event-handlers*
original-lisp-environment
*environment-list*
*read-default-float-format*
*read-suppress*
*readtable*
*print-base*
*print-radix*
*print-length*
*print-level*
*print-pretty*
*print-escape*
*print-case*
*print-circle*
*print-gensym*
*print-array*
defmacro-error-string
defsetf-error-string
std-lisp-readtable
hi::*in-the-editor*
debug::*in-the-debugger*
conditions::*handler-clusters*
conditions::*restart-clusters*
alloctable-address
*gc-inhibit*
*need-to-collect-garbage*
defmacro-error-string
deftype-error-string
defsetf-error-string
%sp-interrupts-inhibited
*software-interrupt-vector*
*load-verbose*
*load-print-stuff*
*in-compilation-unit*
*aborted-compilation-units*
char-name-alist
*default-pathname-defaults*
*beep-function*
*gc-notify-before*
*gc-notify-after*
))
(
de
claim
(
special
*keyword-package*
*lisp-package*
*package*
*query-io*
*terminal-io*
*error-output*
*trace-output*
*debug-io*
*standard-input*
*standard-output*
*hemlock-version*
*evalhook*
*applyhook*
*command-line-switches*
*command-switch-demons*
ext::temporary-foreign-files
*display-event-handlers*
original-lisp-environment
*environment-list*
*read-default-float-format*
*read-suppress*
*readtable*
*print-base*
*print-radix*
*print-length*
*print-level*
*print-pretty*
*print-escape*
*print-case*
*print-circle*
*print-gensym*
*print-array*
defmacro-error-string
defsetf-error-string
std-lisp-readtable
hi::*in-the-editor*
debug::*in-the-debugger*
conditions::*handler-clusters*
conditions::*restart-clusters*
*gc-inhibit*
*need-to-collect-garbage*
defmacro-error-string
deftype-error-string
defsetf-error-string
%sp-interrupts-inhibited
*software-interrupt-vector*
*load-verbose*
*load-print-stuff*
*in-compilation-unit*
*aborted-compilation-units*
char-name-alist
*default-pathname-defaults*
*beep-function*
*gc-notify-before*
*gc-notify-after*
))
(
proclaim
'
(
ftype
(
function
(
&rest
t
)
*
)
c::%%defun
c::%%defmacro
c::%%defconstant
c::%defstruct
c::%%compiler-defstruct
c::%proclaim
c::get-info-value
c::set-info-value
find-keyword
keyword-test
assert-error
assert-prompt
check-type-error
case-body-error
extensions::call-display-event-handler
hemlock-internals::current-window
hemlock-internals::device-exit
hemlock-internals::device-hunk-device
hemlock-internals::device-init
disable-clx-event-handling
xlib::display-input-stream
xlib:event-listen
flush-display-events
hemlock::ts-stream-p
hemlock::ts-stream-wire
hemlock-internals::window-hunk
))
(
declaim
(
ftype
(
function
*
*
)
find-keyword
keyword-test
assert-error
assert-prompt
check-type-error
case-body-error
))
#-
clx
(
declaim
(
ftype
(
function
*
*
)
disable-clx-event-handling
extensions::call-display-event-handler
xlib::display-input-stream
xlib:event-listen
flush-display-events
))
#-
hemlock
(
declaim
(
ftype
(
function
*
*
)
hemlock-internals::current-window
hemlock-internals::device-exit
hemlock-internals::device-hunk-device
hemlock-internals::device-init
hemlock::ts-stream-p
hemlock::ts-stream-wire
hemlock-internals::window-hunk
))
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