From: Kevin M. Rosenberg Date: Mon, 16 Sep 2002 06:26:27 +0000 (+0000) Subject: r2694: Auto commit for Debian build X-Git-Tag: v2.5.5~182 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=167347087d99a14adaa49b8454b1279cccab4897 r2694: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index eb589d3..7c2a221 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +cl-lml (1.0.2-1) unstable; urgency=low + + * Add HR function. + + * Add documentation file and examples. + + -- Kevin M. Rosenberg Mon, 16 Sep 2002 00:25:59 -0600 + cl-lml (1.0.1-1) unstable; urgency=low * Changle FILE-LENGTH function to use stream. 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*