r5191: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 24 Jun 2003 17:51:22 +0000 (17:51 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 24 Jun 2003 17:51:22 +0000 (17:51 +0000)
htmlgen.lisp

index 62c45dda378ed206a6b14a038ba2e075cf7f78b0..3149977974f92978fcb5e8cfc340e7664afef3be 100644 (file)
@@ -1,6 +1,6 @@
 ;; -*- mode: common-lisp; package: lml2 -*-
 ;;
-;; $Id: htmlgen.lisp,v 1.6 2003/06/24 17:48:41 kevin Exp $
+;; $Id: htmlgen.lisp,v 1.7 2003/06/24 17:51:22 kevin Exp $
 ;;
 ;; copyright (c) 1986-2000 Franz Inc, Berkeley, CA 
 ;; copyright (c) 2003 Kevin Rosenberg
 (def-special-html :insert-file
     (named-function html-nbsp-function
       (lambda (ent args argsp body)
-       (declare (ignore ent argsp))
+       (declare (ignore ent args argsp))
        (unless body
          (error "must have a body with :insert-file"))
        `(lml-load-path (car ',body))))
   
   (named-function html-nbsp-print-function
     (lambda (ent cmd args form subst unknown stream)
-      (declare (ignore ent unknown subst stream form))
+      (declare (ignore ent unknown subst stream args))
       (if* (eq cmd :full)
           then (lml-load-path (cadr form))
           else (error ":insert-file must be given an argument")))))