From: Pingu
Subject: Labels warning Allegro CL
Date: 
Message-ID: <6glo50$98$1@news.crc.ca>
When loading in Allegro CL: I get the following warning. Why is there only
one warning when there could potentially be 4 (associated with et input
arguments of the 2 functions in labels:


(defun maintain-coordinations
   (plan new-action new-coordination subgoals n-left)

   (labels (
      (check-new-action (coords_left latest-plan)   (...))

      (check-new-coord (actions-left latest-plan)     (...)) )

      ; end lables defs

      (if new-action
         (check-new-action (plan-coordinations plan) plan)
         (check-new-coord (plan-actions plan) plan) )
   ) ) )


Loading from #P"C:\\lisp\\nl_plan.lsp"
;; Warning: Compilation warning: Attempt to reference non-special free
variable COORDS_LEFT. So will treat as special.
;; Warning: Compilation warning: Attempt to reference non-special free
variable COORDS_LEFT. So will treat as special.
;; Load Successful


All replies gratefully acknowledged.

···············@crc.ca