X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.cl;h=c5d4a7aa569b083876e96e82fce0f0efe5a90424;hb=6c855efd20425d9ae7ca1a9a470c7068b5c8f451;hp=1e7aececbccd16ccc31ea76f38186cdeae19617b;hpb=ada4dc7c761066cc2d761419a9900e42856f2dfc;p=lml.git diff --git a/lml.cl b/lml.cl index 1e7aece..c5d4a7a 100644 --- a/lml.cl +++ b/lml.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.cl,v 1.2 2002/09/16 06:26:27 kevin Exp $ +;;;; $Id: lml.cl,v 1.3 2002/09/16 08:10:11 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,17 +19,12 @@ (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) (in-package :lml) -(defconstant +html4-prologue-string+ - (format nil - "~%")) +(defconstant +html4-prologue-string+ "")) -(defconstant +xml-prologue-string+ - (format nil - "~%")) +(defconstant +xml-prologue-string+ "")) (defconstant +xhtml-prologue-string+ - (format nil - "~%")) + "")) (defvar *print-spaces* nil) (defvar *indent* 0) @@ -130,8 +125,8 @@ (defmacro xhtml-prologue () `(progn - (lml-print +xml-prologue-string+) - (lml-print +xhtml-prologue-string+))) + (lml-print "~A~%" +xml-prologue-string+) + (lml-print "~A~%" +xhtml-prologue-string+))) (defmacro link (dest &body body) `(with a :href ,dest ,@body))