Skip to content
Snippets Groups Projects
Commit 2e5e2342 authored by dtc's avatar dtc
Browse files

ANSI CL compat. changes:

o Add an optional environment argument to constantp; ignored by CMUCL.
o Add the :element-type keyword to make-string.
parent 819e57bf
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.26 1997/02/08 17:22:46 pw Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.27 1998/02/13 16:09:43 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -452,9 +452,10 @@ internally...
(frob form env)))
|#
(defun constantp (object)
(defun constantp (object &optional environment)
"True of any Lisp object that has a constant value: types that eval to
themselves, keywords, constants, and list whose car is QUOTE."
(declare (ignore environment))
(typecase object
(number t)
(character t)
......
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/string.lisp,v 1.8 1996/07/12 18:55:24 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/string.lisp,v 1.9 1998/02/13 16:09:42 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -355,10 +355,11 @@
(string-not-greaterp* string1 string2 start1 end1 start2 end2))
(defun make-string (count &key ((:initial-element fill-char)))
(defun make-string (count &key element-type ((:initial-element fill-char)))
"Given a character count and an optional fill character, makes and returns
a new string Count long filled with the fill character."
(declare (fixnum count))
(declare (fixnum count)
(ignore element-type))
(if fill-char
(do ((i 0 (1+ i))
(string (make-string count)))
......
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.23 1998/01/10 05:02:26 dtc Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/array-tran.lisp,v 1.24 1998/02/13 16:09:48 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -189,11 +189,12 @@
;;;
;;; Just convert it into a make-array.
;;;
(def-source-transform make-string (length &key (initial-element #\NULL))
(def-source-transform make-string (length &key (element-type ''base-char)
(initial-element #\NULL))
(if (byte-compiling)
(values nil t)
`(make-array (the index ,length)
:element-type 'base-char
:element-type ,element-type
:initial-element ,initial-element)))
(defconstant array-info
......
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.78 1997/12/20 19:52:01 dtc Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.79 1998/02/13 16:09:46 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -786,7 +786,8 @@
(or index null)
(foldable flushable))
(defknown make-string (index &key (:initial-element character))
(defknown make-string (index &key (:element-type type-specifier)
(:initial-element character))
simple-string (flushable))
(defknown (string-trim string-left-trim string-right-trim)
......@@ -820,7 +821,8 @@
;;;; In the "Eval" chapter:
(defknown eval (t) *)
(defknown constantp (t) boolean (foldable flushable))
(defknown constantp (t &optional lexical-environment) boolean
(foldable flushable))
;;;; In the "Streams" chapter:
......
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