From: Kevin M. Rosenberg Date: Wed, 5 Mar 2003 04:25:16 +0000 (+0000) Subject: r4160: Auto commit for Debian build X-Git-Tag: v2.5.5~103 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=8678e687343db77d30ece4df99a1c03c529a0c0c r4160: Auto commit for Debian build --- diff --git a/base.lisp b/base.lisp index 4a03e71..20a1677 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.11 2003/02/17 06:48:46 kevin Exp $ +;;;; $Id: base.lisp,v 1.12 2003/03/05 04:25:09 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -49,7 +49,7 @@ (format *html-output* "~A~%" s)) (defun lml-write-char (char) - (write-char char *html-output)) + (write-char char *html-output*)) (defun lml-print-date (date) (lml-princ (date-string date))) diff --git a/debian/changelog b/debian/changelog index 7e3c3fd..f35ec77 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (2.3.2-1) unstable; urgency=low + + * Fix typo in lml-write-char + + -- Kevin M. Rosenberg Tue, 4 Mar 2003 21:24:53 -0700 + cl-lml (2.3.1-1) unstable; urgency=low * doc/readme.lml: Update with new meta arguents diff --git a/doc/readme.html b/doc/readme.html index 04c09d7..5e3bb2c 100644 --- a/doc/readme.html +++ b/doc/readme.html @@ -1,16 +1,16 @@ - -LML README

LML Documentation

Overview

LML is a Common Lisp package for generating HTML and XHTML documents. + +LML README

LML Documentation

Overview

LML is a Common Lisp package for generating HTML and XHTML documents. LML is authored by - Kevin Rosenberg. The home page for LML is - http://lml.b9.com/.

Installation

The easiest way to install LML is to use the Debian - GNU/Linux operating system. You can then use the command apt-get install cl-lml - to automatically download and install the LML package.

On a non-Debian system, you need to have either ASDF - or mk-defsystem + Kevin Rosenberg. The home page for LML is + http://lml.b9.com/.

Installation

The easiest way to install LML is to use the Debian + GNU/Linux operating system. You can then use the command apt-get install cl-lml + to automatically download and install the LML package.

On a non-Debian system, you need to have either ASDF + or mk-defsystem installed to load the system definition file. You will need to change the source - pathname in the system file to match the location where you have installed LML.

Usage

Currently, there is no documentation on the functions provided by LML. However, the source code is - instructive and there are example files included in the LML package.

Examples

Iteration
(i "The square of the first five integers are)"
+       pathname in the system file to match the location where you have installed LML.

Usage

Currently, there is no documentation on the functions provided by LML. However, the source code is + instructive and there are example files included in the LML package.

Examples

Iteration
(i "The square of the first five integers are)"
  (b
    (loop as x from 1 to 5 
      doing
-     (lml-format " ~D" (* x x))))
The square of the first five integers are 1 4 9 16 25

View this page's LML source.

\ No newline at end of file + (lml-format " ~D" (* x x))))
The square of the first five integers are 1 4 9 16 25

View this page's LML source.

\ No newline at end of file