Print a character that does not fit any lexeme after preprocessing.
(pprint-other char bytes) → new-bytes
This is for the
Function:
(defun pprint-other (char bytes) (declare (xargs :guard (and (natp char) (byte-listp bytes)))) (let ((__function__ 'pprint-other)) (declare (ignorable __function__)) (b* (((unless (grammar-character-p char)) (raise "Internal error: bad character code ~x0." (nfix char)))) (pprint-char char bytes))))
Theorem:
(defthm byte-listp-of-pprint-other (b* ((new-bytes (pprint-other char bytes))) (byte-listp new-bytes)) :rule-classes :rewrite)