/usr/share/common-lisp/source/chipz/stream-fallback.lisp is in cl-chipz 20150505-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | ;;;; stream-fallback.lisp -- loaded when there is no support for gray streams
(in-package :chipz)
(defun make-decompressing-stream (format stream)
(declare (ignore format stream))
(error "make-decompressing-stream is not supported for this lisp implementation"))
|