Commit 4955ae80ce3a7471bd75a004492b71ed4d6c4a69

Thomas de Grivel 2017-06-20T22:52:48

untabify

diff --git a/fd-stream.lisp b/fd-stream.lisp
index dbc8805..eadf517 100644
--- a/fd-stream.lisp
+++ b/fd-stream.lisp
@@ -87,7 +87,7 @@
 
 (defmethod stream-read-element-from-buffer ((stream fd-input-stream))
   (let ((element (cffi:mem-aref (stream-input-buffer stream) :unsigned-char
-				(stream-input-index stream))))
+                                (stream-input-index stream))))
     (incf (stream-input-index stream))
     (values element nil)))
 
diff --git a/test.lisp b/test.lisp
index a12a923..3c51e97 100644
--- a/test.lisp
+++ b/test.lisp
@@ -3,8 +3,8 @@
 
 (defpackage :fd-stream.test
   (:use :common-lisp
-	:cl-stream
-	:fd-stream)
+        :cl-stream
+        :fd-stream)
   #.(cl-stream:shadowing-import-from))
 
 (in-package :fd-stream.test)