tags 1501 + patch thanks Noam Postavsky writes: > Stefan Kangas writes: > >> Noam Postavsky writes: >> >>> Stefan Kangas writes: >>> >>> > increase in the memory usage of each undo record, especially when >>> > using font-lock-mode. I'm not sure that is a serious problem, since >>> > memory is only getting cheaper, but it might be worth investigating. >>> > On the other hand, we could just decide that this is not worth the >>> > effort and close this as wontfix. >>> >>> Hmm, it sounds like the problem might just be due to saving text >>> properties in the undo records? If so, maybe a simple fix is to just >>> drop them (or drop only face and font-lock-face properties). >> >> Is it not worth saving also that information? > > Definitely not face, since it's overwritten as soon as font-lock runs. > It's true font-lock-face can sometimes be set manually, though usually > it's computed by font-lock rules. This would be fairly simple to do, as in the attached patch. But I'm not sure that we should make this change, since both `face' and `font-lock-face' could be used by a major mode at various times, without getting automatically re-added by font-lock. From (info "(elisp) Precalculated Fontification"): But if the mode does not use the normal Font Lock machinery, it should not set the variable ‘font-lock-defaults’. In this case the ‘face’ property will not be overridden, so using the ‘face’ property could work too. IOW, I'm not sure that the proposed change won't introduce subtle bugs. Other than that, we have doubled all undo limits in Emacs 27.1, so maybe that's enough of a fix for now? Any other opinions?