0.6.7.22: removed CVS dollar-Header-dollar tags from sources
[sbcl.git] / src / code / globals.lisp
1 ;;;; This file contains special proclamations for variables that are
2 ;;;; referenced in the code sources before they are defined. There are
3 ;;;; also function proclamations to make some common functions be
4 ;;;; known, avoiding work in recording the calls that are done before
5 ;;;; the definition.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9 ;;;;
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
15
16 (in-package "SB!IMPL")
17
18 ;;; FIXME: The COMMON-LISP specials here are already handled in
19 ;;; cl-specials.lisp.
20 (declaim (special *keyword-package* *cl-package* *package* *query-io*
21                   *terminal-io* *error-output* *trace-output* *debug-io*
22                   *standard-input* *standard-output*
23                   *evalhook* *applyhook*
24                   original-lisp-environment
25                   *read-default-float-format*
26                   *read-suppress* *readtable* *print-base* *print-radix*
27                   *print-length* *print-level* *print-pretty* *print-escape*
28                   *print-case* *print-circle* *print-gensym* *print-array*
29                   *standard-readtable*
30                   sb!debug:*in-the-debugger*
31                   sb!debug:*stack-top-hint*
32                   sb!conditions::*handler-clusters*
33                   sb!conditions::*restart-clusters*
34                   *gc-inhibit* *need-to-collect-garbage*
35                   *software-interrupt-vector* *load-verbose*
36                   *load-print-stuff* *in-compilation-unit*
37                   *aborted-compilation-unit-count* *char-name-alist*
38                   *default-pathname-defaults* *beep-function*
39                   *gc-notify-before* *gc-notify-after*
40                   *posix-argv*))
41
42 (declaim (ftype (function * *)
43                 find-keyword keyword-test assert-error
44                 assert-prompt check-type-error case-body-error print-object
45                 describe-object sb!pcl::check-wrapper-validity))
46
47 ;;; Gray streams functions not defined until after PCL is loaded.
48 (declaim (ftype (function * *)
49                 stream-advance-to-column stream-clear-input
50                 stream-clear-output stream-finish-output stream-force-output
51                 stream-fresh-line stream-line-column stream-line-length
52                 stream-listen stream-peek-char stream-read-byte
53                 stream-read-char stream-read-char-no-hang stream-read-line
54                 stream-start-line-p stream-terpri stream-unread-char
55                 stream-write-byte stream-write-char stream-write-string))