aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2004-06-21 22:36:02 +0000
committerKim F. Storm <[email protected]>2004-06-21 22:36:02 +0000
commitf4c30cde81057e798913f0c4fb5d68efbe4da316 (patch)
tree005b2a900d39aa9678680f902d0f24d63296f087 /src/fns.c
parenta9e6baccec3c32fba2de37fd40836e173e2b8f15 (diff)
(Fmapconcat, Fmapcar): Use SAFE_ALLOCA_LISP.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index ae87f88896..e5622bd717 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3010,7 +3010,7 @@ SEQUENCE may be a list, a vector, a bool-vector, or a string. */)
if (nargs < 0) return build_string ("");
nbytes = nargs * sizeof (Lisp_Object);
- SAFE_ALLOCA (args, Lisp_Object *, nbytes);
+ SAFE_ALLOCA_LISP (args, nbytes);
GCPRO1 (separator);
mapcar1 (leni, args, function, sequence);
@@ -3046,7 +3046,7 @@ SEQUENCE may be a list, a vector, a bool-vector, or a string. */)
leni = XFASTINT (len);
nbytes = leni * sizeof (Lisp_Object);
- SAFE_ALLOCA (args, Lisp_Object *, nbytes);
+ SAFE_ALLOCA_LISP (args, nbytes);
mapcar1 (leni, args, function, sequence);