From: Kevin M. Rosenberg Date: Sun, 26 Jan 2003 21:37:08 +0000 (+0000) Subject: r3863: Auto commit for Debian build X-Git-Tag: v2.5.5~116 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=31bc4b94e02797673ab487d61b5809edd8e8f929 r3863: Auto commit for Debian build --- diff --git a/base.lisp b/base.lisp index d90ae62..577622c 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.5 2003/01/17 22:16:25 kevin Exp $ +;;;; $Id: base.lisp,v 1.6 2003/01/26 21:35:27 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -228,8 +228,8 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (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)) + '(a div span h1 h2 h3 h4 h5 h6 i b p li ul ol table tbody td th tr body head + html title pre tt u dl dt dd kbd code form textarea)) (export '(link link-c br hr img input meta meta-key)) (export *macro-list*)) diff --git a/debian/changelog b/debian/changelog index a226f52..fd1af30 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (2.1.3-1) unstable; urgency=low + + * New upstream: Add th and textarea + + -- Kevin M. Rosenberg Sun, 26 Jan 2003 14:35:20 -0700 + cl-lml (2.1.2-1) unstable; urgency=low * New upstream diff --git a/doc/readme.lml b/doc/readme.lml index 935092e..5e15371 100644 --- a/doc/readme.lml +++ b/doc/readme.lml @@ -44,13 +44,13 @@ (b (loop as x from 1 to 5 doing - (lml-print \" ~D\" (* x x))))")) + (lml-format \" ~D\" (* x x))))")) (td (i "The square of the first five integers are") (b (loop as x from 1 to 5 doing - (lml-print " ~D" (* x x)))))) + (lml-format " ~D" (* x x)))))) )) (hr) (p [View this page's ,(a :href "http://lml.b9.com/" "LML") ,(a :href "readme.lml" "source").])