emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Benchmarking temporary Lisp objects [Was: Re: [RFC] temporary Lisp_S


From: Stefan Monnier
Subject: Re: Benchmarking temporary Lisp objects [Was: Re: [RFC] temporary Lisp_Strings]
Date: Wed, 03 Sep 2014 09:14:35 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)

> 2) Is there a way to rewrite alloca_xxx macros to avoid statement
>    expressions?

I guess the way to do it would be to replace

   obj = alloca_vector (i + 1, Qnil);

with

   alloca_vector (obj, i + 1, Qnil);


-- Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]