X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=base.lisp;h=b203a29407195a2360044c7e34ad6fe116665773;hb=61fd445f75948f980c31c6ca6dcc36f0263aafbb;hp=2411ffd82575e87bd39989a76a9829d2d2ee0627;hpb=e0fde65db4134d8a1f369d95aa8a04edf3c728f2;p=lml.git diff --git a/base.lisp b/base.lisp index 2411ffd..b203a29 100644 --- a/base.lisp +++ b/base.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: base.lisp,v 1.15 2003/05/26 14:53:33 kevin Exp $ +;;;; $Id: base.lisp,v 1.20 2003/06/12 12:20:16 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,8 +16,7 @@ ;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 3) (compilation-speed 0))) -(in-package :lml) +(in-package #:lml) (defun html4-prologue-string () "") @@ -26,7 +25,7 @@ "") (defun xhtml-prologue-string () - "") + "") (defvar *print-spaces* nil) (defvar *indent* 0) @@ -230,8 +229,10 @@ (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 th tr body head - html title pre tt u dl dt dd kbd code form textarea)) + '(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 blockquote + var strong small samp big cite address dfn em q area del ins + object param caption col colgroup script noscript)) (export '(alink alink br hr img input meta link meta-key)) (export *macro-list*))