mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 07:10:34 -08:00
Typo in COPY-SYMBOL, prevented proper type checking of input argument
This commit is contained in:
parent
3673c503f8
commit
45111e04bd
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ cl_symbol_name(cl_object x)
|
|||
|
||||
@(defun copy_symbol (sym &optional cp &aux x)
|
||||
@
|
||||
x = ecl_check_cl_type(@'copy-symbol', x, t_symbol);
|
||||
sym = ecl_check_cl_type(@'copy-symbol', sym, t_symbol);
|
||||
x = cl_make_symbol(sym->symbol.name);
|
||||
if (Null(cp))
|
||||
@(return x)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue