r2694: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 06:26:27 +0000 (06:26 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 06:26:27 +0000 (06:26 +0000)
debian/changelog
lml.cl

index eb589d38fb8e39834244104b77a86e9d6e208f94..7c2a2214cb4395de0119387eef71edbe8504c0a2 100644 (file)
@@ -1,3 +1,11 @@
+cl-lml (1.0.2-1) unstable; urgency=low
+
+  * Add HR function.
+  
+  * Add documentation file and examples.
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  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 b273b2c3f16f5702ad49bc5f33ec195faaff837d..1e7aececbccd16ccc31ea76f38186cdeae19617b 100644 (file)
--- 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
 ;;;;
 (defmacro br ()
   `(lml-print "<br />"))
 
+(defmacro hr ()
+  `(lml-print "<hr />"))
+
 (defmacro lml-tag-macro (tag)
   `(progn
      (defmacro ,tag (&body body)
   (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*