X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.cl;h=1e7aececbccd16ccc31ea76f38186cdeae19617b;hb=167347087d99a14adaa49b8454b1279cccab4897;hp=b273b2c3f16f5702ad49bc5f33ec195faaff837d;hpb=d5d00b4cf4b4533884982c4fbc10189b19fb737e;p=lml.git diff --git a/lml.cl b/lml.cl index b273b2c..1e7aece 100644 --- a/lml.cl +++ b/lml.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.cl,v 1.1 2002/09/16 01:13:49 kevin Exp $ +;;;; $Id: lml.cl,v 1.2 2002/09/16 06:26:27 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -161,6 +161,9 @@ (defmacro br () `(lml-print "
")) +(defmacro hr () + `(lml-print "
")) + (defmacro lml-tag-macro (tag) `(progn (defmacro ,tag (&body body) @@ -178,7 +181,7 @@ (defparameter *macro-list* '(a div span h1 h2 h3 h4 h5 h6 i b p li ul ol table tbody td tr body head html title pre tt u dl dt dd kbd code form)) - (export '(link link-c br img input meta meta-key)) + (export '(link link-c br hr img input meta meta-key)) (export *macro-list*)) (loop for i in *macro-list*