From: Gary King Date: Tue, 26 Jun 2007 16:57:48 +0000 (-0400) Subject: Fixed a buglet with invalid declare ignores X-Git-Url: http://repo.macrolet.net/gitweb/?p=cl-graph.git;a=commitdiff_plain;h=45c12d2ef967f4fda3c37a9e9594b243f6c879a9 Fixed a buglet with invalid declare ignores darcs-hash:20070626165748-3cc5d-79a2dbd3ea4a9e908a677c07caef1212b48c9d46.gz --- diff --git a/dev/graphviz/graphviz-support.lisp b/dev/graphviz/graphviz-support.lisp index aec3b99..df13254 100644 --- a/dev/graphviz/graphviz-support.lisp +++ b/dev/graphviz/graphviz-support.lisp @@ -497,9 +497,10 @@ B--D [] (defmethod graph->dot-external ((g basic-graph) file-name &key (type :ps)) "Generate an external represenation of a graph to a file, by running the program in *dot-path*." + (declare (ignorable file-name)) (let ((dot-string (graph->dot g nil)) (dot-type (concatenate 'string "-T" (string-downcase (symbol-name type))))) - (declare (ignorable dot-string dot-type file-name)) + (declare (ignorable dot-string dot-type)) #+lispworks (with-open-stream (s (sys:open-pipe (concatenate 'string *dot-path* " -Tpng -o" file-name) :direction :input))