diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-01-30 22:22:45 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-01-30 22:22:45 -0800 |
commit | c21872c40b0e032188d803421cfaf47b3f043b69 (patch) | |
tree | 6a33c045295916ced7c4dbbf4503ef15c0f6b09d /stdlib/stream-wrap.tl | |
parent | 6c59b2b58e939716cb31e9b7373a9a94435f8b83 (diff) | |
download | txr-c21872c40b0e032188d803421cfaf47b3f043b69.tar.gz txr-c21872c40b0e032188d803421cfaf47b3f043b69.tar.bz2 txr-c21872c40b0e032188d803421cfaf47b3f043b69.zip |
stdlib: missing blank line after copyright header.
Commit 93edcde038209335122964432bd35dee0c2ecb04, made in
August 2021, accidentally removed the blank line after the
copyright header in most stdlib files.
stdlib{asm.tl, awk.tl, build.tl, compiler.tl, copy-file.tl,
debugger.tl, doloop.tl, each-prod.tl, error.tl, except.tl,
ffi.tl, getopts.tl, getput.tl, hash.tl, ifa.tl, match.tl,
op.tl, package.tl, param.tl, path-test.tl, pic.tl, place.tl,
pmac.tl, quips.tl, save-exe.tl, socket.tl, stream-wrap.tl,
tagbody.tl, termios.tl, trace.tl, txr-case.tl, type.tl,
vm-param.tl, with-resources.tl, with-stream.tl, yield.tl}:
Ensure there is a blank line after the copyright header.
Diffstat (limited to 'stdlib/stream-wrap.tl')
-rw-r--r-- | stdlib/stream-wrap.tl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdlib/stream-wrap.tl b/stdlib/stream-wrap.tl index c2836253..33513b6b 100644 --- a/stdlib/stream-wrap.tl +++ b/stdlib/stream-wrap.tl @@ -24,6 +24,7 @@ ;; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ;; POSSIBILITY OF SUCH DAMAGE. + (defstruct stream-wrap nil stream (:method put-string (me str) |