Fixup 999fb37e: always run updateMacros when in batch mode

The optimization is useful in GUI mode only, and it turns out that it
creates weird crashes otherwise.

Thanks to Juergen Spitzmuller for the idea.
This commit is contained in:
Jean-Marc Lasgouttes 2024-07-25 18:30:38 +02:00
parent 003bbd3483
commit fe1a3b57df

View File

@ -3922,7 +3922,7 @@ void Buffer::updateMacros() const
return;
// early exit if the buffer has not changed since last time
if (d->update_macros_id_ == d->id_)
if (d->gui_ && d->update_macros_id_ == d->id_)
return;
d->update_macros_id_ = d->id_;