[rucksack-cvs] CVS rucksack
alemmens
alemmens at common-lisp.net
Thu Jan 31 13:03:43 UTC 2008
Update of /project/rucksack/cvsroot/rucksack
In directory clnet:/tmp/cvs-serv15987
Modified Files:
import-export.lisp
Log Message:
Change DEFGENERIC IMPORT-RUCKSACK to DEFUN IMPORT-RUCKSACK
to fix a compiler warning reported by Brad Beveridge.
--- /project/rucksack/cvsroot/rucksack/import-export.lisp 2008/01/23 15:45:03 1.1
+++ /project/rucksack/cvsroot/rucksack/import-export.lisp 2008/01/31 13:03:39 1.2
@@ -23,12 +23,15 @@
(:documentation "Export all objects in a rucksack to a file. The
resulting file can be imported by newer versions of Rucksack."))
-(defgeneric import-rucksack (pathname directory-designator
- &rest args
- &key (if-exists :error)
- &allow-other-keys)
- (:documentation "Creates a new rucksack in the directory specified by
+(defun import-rucksack (pathname directory-designator
+ &rest args
+ &key (if-exists :error)
+ &allow-other-keys)
+ "Creates a new rucksack in the directory specified by
DIRECTORY-DESIGNATOR, opens the new rucksack and imports all objects
-that were exported to the file specified by PATHNAME."))
+that were exported to the file specified by PATHNAME."
+ (declare (ignore pathname directory-designator if-exists args))
+ (error "Not implemented yet"))
+
More information about the rucksack-cvs
mailing list