r4160: Auto commit for Debian build
[lml.git] / base.lisp
index 685382eba69f67f1a74af309b6a1a63540043205..20a1677c3abde47a40baef1df288c877d8208e8b 100644 (file)
--- a/base.lisp
+++ b/base.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: base.lisp,v 1.9 2003/02/07 04:31:48 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
 ;;;;
@@ -26,7 +26,7 @@
   "<?xml version=\"1.0\" encoding=\"iso-8859-1\" standalone=\"yes\"?>")
 
 (defun xhtml-prologue-string ()
-  "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">")
+  "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">")
 
 (defvar *print-spaces* nil)
 (defvar *indent* 0)
@@ -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)))
 (defmacro input (&rest args)
   `(with-no-endtag input ,@args))
 
-(defmacro meta (name content)
-  `(with meta :name ,name :content ,content))
+(defmacro link (&rest args)
+  `(with-no-endtag link ,@args))
 
-(defmacro meta-key (&key name content http-equiv)
-  `(with meta :name ,name :content ,content :http-equiv ,http-equiv))
+(defmacro meta (&rest args)
+  `(with-no-endtag meta ,@args))
 
 (defmacro br (&rest args)
   `(with-no-endtag br ,@args))
 (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 link))
-  (export '(alink alink-c br hr img input meta meta-key))
+         html title pre tt u dl dt dd kbd code form textarea))
+  (export '(alink alink br hr img input meta link meta-key))
   (export *macro-list*))
 
 (loop for i in *macro-list*