Skip to content
Snippets Groups Projects
Commit 1f15f429 authored by dtc's avatar dtc
Browse files

Correct the declared result types of a few functions:

o Close does not return a stream, declare is as type t.
o Disassemble does not return values, declare it as (values).
o Inspect returns an object, declare it as type t.
o Room does not return a value, declare it as (values).
o Dribble does not return a value, declare it as (values).
parent 7698e84f
No related branches found
No related tags found
No related merge requests found
...@@ -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/compiler/fndb.lisp,v 1.86 2000/02/25 15:00:16 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.87 2000/07/09 16:08:56 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -837,7 +837,7 @@ ...@@ -837,7 +837,7 @@
(defknown stream-element-type (stream) type-specifier (movable foldable flushable)) (defknown stream-element-type (stream) type-specifier (movable foldable flushable))
(defknown (output-stream-p input-stream-p) (stream) boolean (movable foldable (defknown (output-stream-p input-stream-p) (stream) boolean (movable foldable
flushable)) flushable))
(defknown close (stream &key (:abort t)) stream ()) (defknown close (stream &key (:abort t)) t ())
;;;; In the "Input/Output" chapter: ;;;; In the "Input/Output" chapter:
...@@ -1076,19 +1076,19 @@ ...@@ -1076,19 +1076,19 @@
(defknown disassemble (callable &key (:stream stream) (:backend backend) (defknown disassemble (callable &key (:stream stream) (:backend backend)
(:use-labels t)) (:use-labels t))
void) (values))
(defknown documentation (t symbol) (defknown documentation (t symbol)
(or string null) (or string null)
(flushable)) (flushable))
(defknown describe (t &optional (or stream (member t nil))) (values)) (defknown describe (t &optional (or stream (member t nil))) (values))
(defknown inspect (t) (values)) (defknown inspect (t) t)
(defknown room (&optional (member t nil :default)) void) (defknown room (&optional (member t nil :default)) (values))
(defknown ed (&optional (or symbol cons filename) &key (:init t) (:display t)) (defknown ed (&optional (or symbol cons filename) &key (:init t) (:display t))
t) t)
(defknown dribble (&optional filename &key (:if-exists t)) t) (defknown dribble (&optional filename &key (:if-exists t)) (values))
(defknown apropos (stringable &optional packagelike t) (values)) (defknown apropos (stringable &optional packagelike t) (values))
(defknown apropos-list (stringable &optional packagelike t) list (flushable)) (defknown apropos-list (stringable &optional packagelike t) list (flushable))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment