aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 661a3ea1887..379b1321e08 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3134,7 +3134,7 @@ SEQUENCE may be a list, a vector, a bool-vector, or a string. */)
3134 len = Flength (sequence); 3134 len = Flength (sequence);
3135 leni = XINT (len); 3135 leni = XINT (len);
3136 nargs = leni + leni - 1; 3136 nargs = leni + leni - 1;
3137 if (nargs < 0) return build_string (""); 3137 if (nargs < 0) return empty_unibyte_string;
3138 3138
3139 SAFE_ALLOCA_LISP (args, nargs); 3139 SAFE_ALLOCA_LISP (args, nargs);
3140 3140