[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [External] : Passing buffers to function in elisp
From: |
Stefan Monnier |
Subject: |
Re: [External] : Passing buffers to function in elisp |
Date: |
Sat, 25 Feb 2023 18:52:42 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
> If `emms-info-native--read-and-decode-ogg-page' is called very often
> (hundreds of times or more), it's probably better to use one single
> buffer instead of a fresh temp buffer every single time. Using temp
> buffers creates quite a bunch of garbage IME.
That's definitely something to consider. Another is whether the ELisp
code was byte-compiled (if not, then all bets are off, the interpreter
itself generates a fair bit of garbage, especially if you use a lot of
macros). Are you using `bindat-type`?
Stefan
- Passing buffers to function in elisp, Petteri Hintsanen, 2023/02/21
- RE: [External] : Passing buffers to function in elisp, Drew Adams, 2023/02/21
- Re: [External] : Passing buffers to function in elisp, tomas, 2023/02/22
- Re: [External] : Passing buffers to function in elisp, Petteri Hintsanen, 2023/02/24
- Re: [External] : Passing buffers to function in elisp, tomas, 2023/02/25
- Re: [External] : Passing buffers to function in elisp, Michael Heerdegen, 2023/02/25
- Re: [External] : Passing buffers to function in elisp, tomas, 2023/02/25
- Re: [External] : Passing buffers to function in elisp, Michael Heerdegen, 2023/02/25
- Re: [External] : Passing buffers to function in elisp, tomas, 2023/02/25
- Re: [External] : Passing buffers to function in elisp,
Stefan Monnier <=
- Re: [External] : Passing buffers to function in elisp, Petteri Hintsanen, 2023/02/27
- Re: [External] : Passing buffers to function in elisp, tomas, 2023/02/28
Re: Passing buffers to function in elisp, tomas, 2023/02/22