diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -242,7 +242,7 @@ Each argument may be a list, vector or string.") | |||
| 242 | int nargs; | 242 | int nargs; |
| 243 | Lisp_Object *args; | 243 | Lisp_Object *args; |
| 244 | { | 244 | { |
| 245 | return concat (nargs, args, Lisp_Vector, 0); | 245 | return concat (nargs, args, Lisp_Vectorlike, 0); |
| 246 | } | 246 | } |
| 247 | 247 | ||
| 248 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, | 248 | DEFUN ("copy-sequence", Fcopy_sequence, Scopy_sequence, 1, 1, 0, |
| @@ -308,7 +308,7 @@ concat (nargs, args, target_type, last_special) | |||
| 308 | 308 | ||
| 309 | if (target_type == Lisp_Cons) | 309 | if (target_type == Lisp_Cons) |
| 310 | val = Fmake_list (len, Qnil); | 310 | val = Fmake_list (len, Qnil); |
| 311 | else if (target_type == Lisp_Vector) | 311 | else if (target_type == Lisp_Vectorlike) |
| 312 | val = Fmake_vector (len, Qnil); | 312 | val = Fmake_vector (len, Qnil); |
| 313 | else | 313 | else |
| 314 | val = Fmake_string (len, len); | 314 | val = Fmake_string (len, len); |