Skip to content
Snippets Groups Projects
Commit cc9a24a0 authored by ram's avatar ram
Browse files

Fixed bad syntax in array type declarations.

parent c2fb50d2
No related branches found
No related tags found
No related merge requests found
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
descriptor-ptr string-ptr) descriptor-ptr string-ptr)
(declare (simple-string line string-table) (declare (simple-string line string-table)
(fixnum word-end descriptor-ptr string-ptr) (fixnum word-end descriptor-ptr string-ptr)
(type (array (unsigned-byte 16) 1) dictionary descriptors)) (type (array (unsigned-byte 16) (*)) dictionary descriptors))
(nstring-upcase line :end word-end) (nstring-upcase line :end word-end)
(let* ((hash-loc (new-hash-entry line word-end dictionary)) (let* ((hash-loc (new-hash-entry line word-end dictionary))
(descriptor-ptr+1 (1+ descriptor-ptr)) (descriptor-ptr+1 (1+ descriptor-ptr))
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
(defun new-add-flags (descriptors loc line word-end) (defun new-add-flags (descriptors loc line word-end)
(declare (simple-string line) (declare (simple-string line)
(fixnum word-end) (fixnum word-end)
(type (array (unsigned-byte 16) 1) descriptors)) (type (array (unsigned-byte 16) (*)) descriptors))
(do ((flag (1+ word-end) (+ 2 flag)) (do ((flag (1+ word-end) (+ 2 flag))
(line-end (length line))) (line-end (length line)))
((>= flag line-end)) ((>= flag line-end))
...@@ -219,7 +219,7 @@ ...@@ -219,7 +219,7 @@
(defun write-dictionary (f dictionary descriptors entry-count (defun write-dictionary (f dictionary descriptors entry-count
string-table string-table-length) string-table string-table-length)
(declare (type (array (unsigned-byte 16) 1) dictionary descriptors) (declare (type (array (unsigned-byte 16) (*)) dictionary descriptors)
(simple-string string-table) (simple-string string-table)
(fixnum string-table-length)) (fixnum string-table-length))
(let ((filename (lisp::predict-name (namestring (pathname f)) nil))) (let ((filename (lisp::predict-name (namestring (pathname f)) nil)))
......
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