Description: As we have hemlock as a package to load we need a seperate package file
Author: Peter Van Eynde <pvaneynd@debian.org>
Forwarded: not needed


Index: b/src/hemlock/package.lisp
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ b/src/hemlock/package.lisp	2011-12-06 09:05:40.656359825 +0000
@@ -0,0 +1,27 @@
+;;; -*- Mode: lisp -*-
+
+(in-package :cl-user)
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (when (find-package :ed)
+    (delete-package
+     (find-package :ed)))
+  
+  (when (find-package :hi)
+    (delete-package
+     (find-package :hi))))
+
+(make-package "HEMLOCK-INTERNALS"
+              :nicknames '("HI")
+              :use '("LISP" "EXTENSIONS" "SYSTEM"))
+
+(make-package "HEMLOCK"
+              :nicknames '("ED")
+              :use '("LISP" "HEMLOCK-INTERNALS" "EXTENSIONS" "SYSTEM"))
+;;;
+(export 'c::compile-from-stream (find-package "C"))
+
+(defvar *byte-compile* #+small t #-small :maybe)
+
+(pushnew :command-bits *features*)
+(pushnew :buffered-lines *features*)
