diff options
-rw-r--r-- | üretim.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/üretim.lisp b/üretim.lisp index 2ae81f4..6fb3cd7 100644 --- a/üretim.lisp +++ b/üretim.lisp @@ -16,8 +16,8 @@ (defun tag-sonu-yeni-satır? (tag) (case tag - ((:html :head :body :div :ol :ul :li :p :title :pre) nil) - ((:b :i :code) t))) + ((:html :head :body :div :ol :ul :li :p :title :pre) t) + ((:b :i :code) nil))) (defun yeni-satır-yaz (stream) (write-char #\Newline stream) |