alphapapa / ement.el

A Matrix client for GNU Emacs
GNU General Public License v3.0
488 stars 44 forks source link

[Optimization] re-use buffers for message rendering #209

Closed progfolio closed 12 months ago

progfolio commented 1 year ago

I noticed both ement-room--render-html and ement-room--format-message do their work in a temp buffer. Re-using a single buffer for each should reduce GC pressure and be more performant.

alphapapa commented 1 year ago

Thanks.