When running bibtex-reformat
I get Match data clobbered by buffer modification hooks
. I know according to the post here that one of my change hooks is clobbering the match data. In fact, when I set inhibit-modification-hooks
to t
, I don't get the error anymore.
I am trying to figure out the culprit for this error. I tried removing all the hooks from after-change-functions
, before-change-functions
and first-change-hook
and set back inhibit-modification-hooks
to nil
, but then the error comes back. Evidently, there's a change hook that is running which I don't know.
Is there another way of hunting down the culprit? Or somewhere else I should be looking?