From c66f587bb418d6173188973ec3c38b18305c5033 Mon Sep 17 00:00:00 2001 From: "attila.lendvai" Date: Thu, 29 Jun 2006 17:23:06 -0400 Subject: [PATCH] Added some &allow-other-keys to some defgeneric's to avoid some warnings darcs-hash:20060629212306-6b9e8-365199ed5a750cd1959e1f887de8a0dfd33bc718.gz --- dev/api.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/api.lisp b/dev/api.lisp index 8dccb44..aee6b66 100644 --- a/dev/api.lisp +++ b/dev/api.lisp @@ -14,7 +14,7 @@ ;;; API ;;; --------------------------------------------------------------------------- -(defgeneric make-graph (graph-type &key) +(defgeneric make-graph (graph-type &key &allow-other-keys) (:documentation "Create a new graph of type `graph-type'. Graph type can be a symbol naming a sub-class of basic-graph or a list. If it is a list of symbols naming different classes. If graph-type is a list, then a class which has all of the listed @@ -36,7 +36,7 @@ be created as if with a call to make-instance.")) (defgeneric add-edge-between-vertexes (graph value-or-vertex-1 value-or-vertex-2 &rest args &key if-duplicate-do - edge-type) + edge-type &allow-other-keys) (:documentation "Adds an edge between two vertexes and returns it. If force-new? is true, the edge is added even if one already exists. @@ -67,7 +67,7 @@ be called with the previous edge.")) ;;; --------------------------------------------------------------------------- -(defgeneric add-vertex (graph value-or-vertex &key if-duplicate-do) +(defgeneric add-vertex (graph value-or-vertex &key if-duplicate-do &allow-other-keys) (:documentation "Adds a vertex to a graph. If called with a vertex, then this vertex is added. If called with a value, then a new vertex is created to hold the value. If-duplicate-do can be one of :ignore, :force, :replace, :replace-value or a function. The default is :ignore.")) ;;; --------------------------------------------------------------------------- -- 1.7.10.4