Skip to content

Commit

Permalink
Merge pull request #8 from macdavid313/master
Browse files Browse the repository at this point in the history
fix a bug due to allegro's function `variable-information` problem
  • Loading branch information
fukamachi committed Feb 3, 2016
2 parents c5fd6f7 + 5fc7c8c commit 9643f91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/proc-parse.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@
((constantp var) (type-of var))
#+(or sbcl openmcl cmu allegro)
((and (symbolp var)
(cdr (assoc 'type (nth-value 2 (variable-information var env))))))
#+allegro (cadr (assoc 'type (nth-value 2 (variable-information var env))))
#-allegro (cdr (assoc 'type (nth-value 2 (variable-information var env))))
))
((and (listp var)
(eq (car var) 'the)
(cadr var)))))
Expand Down

0 comments on commit 9643f91

Please sign in to comment.