From 1d825c43d523dda70b6c870726902c6c8911f3a0 Mon Sep 17 00:00:00 2001 From: Alfredo Beaumont Date: Wed, 24 Apr 2013 18:56:20 +0200 Subject: [PATCH] ls-read: fix spacing --- src/read.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.lisp b/src/read.lisp index 39aa7f5..8f7fd71 100644 --- a/src/read.lisp +++ b/src/read.lisp @@ -236,8 +236,8 @@ (read-sharp stream)) (t (let ((string (read-until stream #'terminalp))) - (or (values (!parse-integer string nil)) - (read-symbol string))))))) + (or (values (!parse-integer string nil)) + (read-symbol string))))))) (defun ls-read (stream &optional (eof-error-p t) eof-value) (let ((x (ls-read-1 stream))) -- 1.7.10.4