Skip to content

Commit

Permalink
Merge 5fc7c8c into 3225e4e
Browse files Browse the repository at this point in the history
  • Loading branch information
David Guru committed Feb 2, 2016
2 parents 3225e4e + 5fc7c8c commit f0f501b
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 f0f501b

Please sign in to comment.