X-Git-Url: http://git.kpe.io/?p=lml2.git;a=blobdiff_plain;f=base.lisp;h=ee6598eb231bbd57e3a36311f90e788b939f27d7;hp=01b3c7666e6b0565b60fd635654a083aef4b9ef3;hb=1726bee5998c1f574c84f294f26b982e124da629;hpb=baab0724ae6b89da695994a9ca394b47a0559dc4 diff --git a/base.lisp b/base.lisp index 01b3c76..ee6598e 100644 --- a/base.lisp +++ b/base.lisp @@ -7,28 +7,21 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.6 2003/06/29 16:21:09 kevin Exp $ +;;;; $Id: base.lisp,v 1.7 2003/07/12 17:54:05 kevin Exp $ ;;;; -;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of LML2, is Copyright (c) 2000-2003 by Kevin Rosenberg. +;;;; Rights of modification and redistribution are in the LICENSE file. ;;;; -;;;; LML users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU General Public License v2 -;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* (in-package #:lml2) -(defun reset-indent () - (setq *indent* 0)) - (defun lml-format (str &rest args) (when (streamp *html-stream*) - (when *print-spaces* (indent-spaces *indent* *html-stream*)) (if args (apply #'format *html-stream* str args) - (write-string str *html-stream*)) - (when *print-spaces* (write-char #\newline *html-stream*)))) + (write-string str *html-stream*)))) (defun lml-princ (s) (princ s *html-stream*)) @@ -74,7 +67,6 @@ (html ((:html :xmlns "http://www.w3.org/1999/xhtml") ,@body)))) - (defmacro alink (url desc)