Tue Oct 10 04:49:06 EDT 2006  Travis Cross <tc@traviscross.com>
  * Fixed call to MAKE-KEYWORD.
diff -rN -u old-hunchentoot/easy-handlers.lisp new-hunchentoot/easy-handlers.lisp
--- old-hunchentoot/easy-handlers.lisp	2006-10-10 04:49:54.000000000 -0400
+++ new-hunchentoot/easy-handlers.lisp	2006-10-10 04:49:54.000000000 -0400
@@ -51,7 +51,7 @@
     (character (and (= (length argument) 1)
                     (char argument 0)))
     (integer (ignore-errors (parse-integer argument :junk-allowed t)))
-    (keyword (make-keyword argument nil))
+    (keyword (make-keyword argument))
     (boolean t)
     (otherwise (funcall type argument))))
 


