mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-14 05:12:38 -08:00
Fixed typo in GET-ARG-TYPES: local declarations were not properly parsed.
This commit is contained in:
parent
8ce8d5aeb4
commit
1eb33bb8af
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@
|
|||
(defun get-arg-types (fname &optional (env *cmp-env*) (may-be-global t))
|
||||
(let ((x (cmp-env-search-ftype fname env)))
|
||||
(if x
|
||||
(values x t)
|
||||
(values (first x) t)
|
||||
(when may-be-global
|
||||
(let ((fun (cmp-env-search-function fname env)))
|
||||
(when (or (null fun) (and (fun-p fun) (fun-global fun)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue